nixpkgs/pkgs/development/idris-modules/jheiling-js.nix

28 lines
618 B
Nix
Raw Permalink Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, contrib
, jheiling-extras
, lib
}:
build-idris-package {
name = "jheiling-js";
version = "2016-03-09";
2018-09-18 08:38:59 +00:00
ipkgName = "js";
2018-07-02 03:18:21 +00:00
idrisDeps = [ contrib jheiling-extras ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "jheiling";
repo = "idris-js";
rev = "59763cd0c9715a9441931ae1077e501bb2ec6020";
sha256 = "1mvpxwszh56cfrf509qiadn7gp2l4syanhvdq6v1br0y03g8wk9v";
};
meta = {
description = "Js library for Idris";
homepage = "https://github.com/jheiling/idris-js";
2018-03-16 11:40:17 +00:00
license = lib.licenses.unlicense;
maintainers = [ lib.maintainers.brainrape ];
};
}