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

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

26 lines
575 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, hezarfen
, lib
}:
build-idris-package {
2022-02-14 22:08:24 +00:00
pname = "composition";
2018-03-16 11:40:17 +00:00
version = "2017-11-12";
2018-07-02 03:18:21 +00:00
idrisDeps = [ hezarfen ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "vmchale";
repo = "composition";
rev = "8f05e8db750793a9992b315dc0a2c327b837ec8b";
sha256 = "05424xzxx6f3ig0ravib15nr34nqvaq8spcj6b1512raqrvkkay8";
};
meta = {
description = "Composition extras for Idris";
homepage = "https://github.com/vmchale/composition";
2018-03-16 11:40:17 +00:00
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}