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

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

25 lines
610 B
Nix
Raw Normal View History

2018-07-02 03:18:21 +00:00
{ build-idris-package
2018-03-16 11:40:17 +00:00
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
2022-02-14 22:08:24 +00:00
pname = "rationals";
2018-03-16 11:40:17 +00:00
version = "2017-04-29";
2018-07-02 03:18:21 +00:00
idrisDeps = [ contrib ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "mcgordonite";
repo = "idris-binary-rationals";
rev = "0d7010b267662d89e76e2cc8b27fd95ecca009b8";
sha256 = "0fc93n4pyqyrjxrspnr3vjzc09m78ni1ardq1vx9g40vmvl0n49s";
};
meta = {
description = "An idris rational number type built from paths in the Stern Brocot tree";
homepage = "https://github.com/mcgordonite/idris-binary-rationals";
2018-03-16 11:40:17 +00:00
maintainers = [ lib.maintainers.brainrape ];
};
}