Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 build-idris-package, 3 fetchFromGitHub, 4 contrib, 5 lib, 6}: 7build-idris-package { 8 pname = "extras"; 9 version = "2018-03-06"; 10 11 idrisDeps = [ contrib ]; 12 13 src = fetchFromGitHub { 14 owner = "jheiling"; 15 repo = "idris-extras"; 16 rev = "20e79087043ddb00301cdc3036964a2b1c5b1c5f"; 17 sha256 = "0j34a7vawrkc7nkwwnv6lsjjdcr00d85csjw06nnbh8rj4vj5ps0"; 18 }; 19 20 meta = { 21 description = "Some useful functions for Idris"; 22 homepage = "https://github.com/jheiling/idris-extras"; 23 license = lib.licenses.unlicense; 24 maintainers = [ lib.maintainers.brainrape ]; 25 }; 26}