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

25 lines
575 B

{ build-idris-package
, fetchFromGitHub
, hezarfen
, lib
}:
build-idris-package {
pname = "composition";
version = "2017-11-12";
idrisDeps = [ hezarfen ];
src = fetchFromGitHub {
owner = "vmchale";
repo = "composition";
rev = "8f05e8db750793a9992b315dc0a2c327b837ec8b";
sha256 = "05424xzxx6f3ig0ravib15nr34nqvaq8spcj6b1512raqrvkkay8";
};
meta = {
description = "Composition extras for Idris";
homepage = "https://github.com/vmchale/composition";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}