My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/jheiling-js.nix

27 lines
619 B

{ build-idris-package
, fetchFromGitHub
, contrib
, jheiling-extras
, lib
}:
build-idris-package {
pname = "jheiling-js";
version = "2016-03-09";
ipkgName = "js";
idrisDeps = [ contrib jheiling-extras ];
src = fetchFromGitHub {
owner = "jheiling";
repo = "idris-js";
rev = "59763cd0c9715a9441931ae1077e501bb2ec6020";
sha256 = "1mvpxwszh56cfrf509qiadn7gp2l4syanhvdq6v1br0y03g8wk9v";
};
meta = {
description = "Js library for Idris";
homepage = "https://github.com/jheiling/idris-js";
license = lib.licenses.unlicense;
maintainers = [ lib.maintainers.brainrape ];
};
}