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

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

32 lines
653 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{
build-idris-package,
fetchFromGitHub,
contrib,
pruviloj,
lib,
}:
build-idris-package {
2022-02-14 22:08:24 +00:00
pname = "bi";
version = "2018-06-25";
2018-03-16 11:40:17 +00:00
2018-09-18 08:38:59 +00:00
ipkgName = "Bi";
2018-07-02 03:18:21 +00:00
idrisDeps = [
contrib
pruviloj
];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "sbp";
repo = "idris-bi";
rev = "6bd90fb30b06ab02438efb5059e2fc699fdc7787";
sha256 = "1px550spigl8k1m1r64mjrw7qjvipa43xy95kz1pb5ibmy84d6r3";
2018-03-16 11:40:17 +00:00
};
meta = {
description = "Idris Binary Integer Arithmetic, porting PArith, NArith, and ZArith from Coq";
homepage = "https://github.com/sbp/idris-bi";
2018-03-16 11:40:17 +00:00
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}