Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 build-idris-package, 3 fetchFromGitHub, 4 hezarfen, 5 lib, 6}: 7build-idris-package { 8 pname = "composition"; 9 version = "2017-11-12"; 10 11 idrisDeps = [ hezarfen ]; 12 13 src = fetchFromGitHub { 14 owner = "vmchale"; 15 repo = "composition"; 16 rev = "8f05e8db750793a9992b315dc0a2c327b837ec8b"; 17 sha256 = "05424xzxx6f3ig0ravib15nr34nqvaq8spcj6b1512raqrvkkay8"; 18 }; 19 20 meta = { 21 description = "Composition extras for Idris"; 22 homepage = "https://github.com/vmchale/composition"; 23 license = lib.licenses.bsd3; 24 maintainers = [ lib.maintainers.brainrape ]; 25 }; 26}