Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 build-idris-package, 3 fetchFromGitHub, 4 lib, 5}: 6build-idris-package { 7 pname = "idrisscript"; 8 version = "2017-07-01"; 9 10 src = fetchFromGitHub { 11 owner = "idris-hackers"; 12 repo = "IdrisScript"; 13 rev = "4bb7019182392f24d2246a3e616f829156c8f091"; 14 sha256 = "074ignh2hqwq4ng5nk7dswga4lm7342w7h4bmx4n03ygrn7w89ff"; 15 }; 16 17 meta = { 18 description = "FFI Bindings to interact with the unsafe world of JavaScript"; 19 homepage = "https://github.com/idris-hackers/IdrisScript"; 20 license = lib.licenses.bsd2; 21 maintainers = [ lib.maintainers.brainrape ]; 22 }; 23}