pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / idris-modules / idrisscript.nix
blob2a2693c623e0841c8861a21fbf73fbb49f2bfe26
1 { build-idris-package
2 , fetchFromGitHub
3 , lib
4 }:
5 build-idris-package  {
6   pname = "idrisscript";
7   version = "2017-07-01";
9   src = fetchFromGitHub {
10     owner = "idris-hackers";
11     repo = "IdrisScript";
12     rev = "4bb7019182392f24d2246a3e616f829156c8f091";
13     sha256 = "074ignh2hqwq4ng5nk7dswga4lm7342w7h4bmx4n03ygrn7w89ff";
14   };
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   };