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/trees.nix

25 lines
528 B

{ build-idris-package
, fetchFromGitHub
, contrib
, bi
, lib
}:
build-idris-package {
pname = "trees";
version = "2018-03-19";
idrisDeps = [ contrib bi ];
src = fetchFromGitHub {
owner = "clayrat";
repo = "idris-trees";
rev = "dc17f9598bd78ec2b283d91b3c58617960d88c85";
sha256 = "1c3p69875qc4zdk28im9xz45zw46ajgcmxpqmig63y0z4v3gwxww";
};
meta = {
description = "Trees in Idris";
homepage = "https://github.com/clayrat/idris-trees";
maintainers = [ lib.maintainers.brainrape ];
};
}