My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/rationals.nix

24 lines
610 B

{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
pname = "rationals";
version = "2017-04-29";
idrisDeps = [ contrib ];
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";
maintainers = [ lib.maintainers.brainrape ];
};
}