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