nixpkgs/pkgs/development/idris-modules/electron.nix

28 lines
641 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, contrib
, jheiling-extras
, jheiling-js
, lib
}:
build-idris-package {
name = "electron";
version = "2016-03-07";
2018-07-02 03:18:21 +00:00
idrisDeps = [ contrib jheiling-extras jheiling-js ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "jheiling";
repo = "idris-electron";
rev = "f0e86f52b8e5a546a2bf714709b659c1c0b04395";
sha256 = "1rpa7yjvfpzl06h0qbk54jd2n52nmgpf7nq5aamcinqh7h5gbiwn";
};
meta = {
description = "Electron bindings for Idris";
homepage = "https://github.com/jheiling/idris-electron";
2018-03-16 11:40:17 +00:00
license = lib.licenses.unlicense;
maintainers = [ lib.maintainers.brainrape ];
};
}