nixpkgs/pkgs/development/idris-modules/refined.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
597 B
Nix
Raw Normal View History

2018-03-16 12:40:17 +01:00
{ build-idris-package
, fetchFromGitHub
, lib
}:
build-idris-package {
2022-02-14 23:08:24 +01:00
pname = "refined";
2018-03-16 12:40:17 +01:00
version = "2017-12-28";
2018-09-18 10:38:59 +02:00
ipkgName = "idris-refined";
2018-03-16 12:40:17 +01:00
src = fetchFromGitHub {
owner = "janschultecom";
repo = "idris-refined";
rev = "e21cdef16106a77b42d193806c1749ba6448a128";
sha256 = "1am7kfc51p2zlml954v8cl9xvx0g0f1caq7ni3z36xvsd7fh47yh";
};
meta = {
description = "Port of Scala/Haskell Refined library to Idris";
homepage = "https://github.com/janschultecom/idris-refined";
2018-03-16 12:40:17 +01:00
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.brainrape ];
};
}