nixpkgs/pkgs/development/compilers/elm/packages/elm-reactor.nix

26 lines
947 B
Nix
Raw Normal View History

{ mkDerivation, base, blaze-html, blaze-markup, bytestring, cmdargs
2015-11-20 18:14:49 +01:00
, directory, elm-compiler, fetchgit, filepath, fsnotify, mtl
, snap-core, snap-server, stdenv, text, time, transformers
2016-05-11 13:30:09 +02:00
, websockets, websockets-snap, elm-package, file-embed
}:
mkDerivation {
pname = "elm-reactor";
2016-05-11 13:30:09 +02:00
version = "0.17";
src = fetchgit {
url = "https://github.com/elm-lang/elm-reactor";
2016-05-11 13:30:09 +02:00
sha256 = "14hb16qwx1f4bfngh87pwjavgz6njbwdxlsy218rw3xydy3s1cn3";
rev = "4781ad2fbb6cbcde0d659dec293bbed9c847ba71";
};
isLibrary = false;
isExecutable = true;
2015-11-20 18:14:49 +01:00
executableHaskellDepends = [
base blaze-html blaze-markup bytestring cmdargs directory
elm-compiler filepath fsnotify mtl snap-core snap-server text time
2016-05-11 13:30:09 +02:00
transformers websockets websockets-snap elm-package file-embed
];
jailbreak = true;
homepage = "http://elm-lang.org";
description = "Interactive development tool for Elm programs";
license = stdenv.lib.licenses.bsd3;
}