depot/pkgs/development/idris-modules/composition.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
575 B
Nix

{ 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 ];
};
}