2014-12-17 11:57:25 +01:00
|
|
|
{ cabal, blazeHtml, blazeMarkup, cmdargs, elmCompiler, elmMake, filepath
|
|
|
|
, fsnotify, HTTP, mtl, snapCore, snapServer, systemFilepath, text
|
|
|
|
, time, transformers, unorderedContainers, websockets
|
|
|
|
, websocketsSnap
|
2014-11-04 11:47:32 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "elm-reactor";
|
2014-12-17 11:57:25 +01:00
|
|
|
version = "0.2.0.1";
|
|
|
|
sha256 = "1qnrxr3wayhw92w6lghchz8avxbxg00w7p6d1vs7mq9q56876jgj";
|
2014-11-04 11:47:32 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2015-01-08 15:10:15 +01:00
|
|
|
patches = [ ./0001-remove-custom-build-step.patch ];
|
2014-11-04 11:47:32 +01:00
|
|
|
buildDepends = [
|
2014-12-17 11:57:25 +01:00
|
|
|
blazeHtml blazeMarkup cmdargs elmCompiler filepath fsnotify HTTP
|
|
|
|
mtl snapCore snapServer systemFilepath text time transformers
|
|
|
|
unorderedContainers websockets websocketsSnap elmMake
|
2014-11-04 11:47:32 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://elm-lang.org";
|
|
|
|
description = "Interactive development tool for Elm programs";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2015-01-08 15:10:15 +01:00
|
|
|
# broken = true;
|
2014-11-04 11:47:32 +01:00
|
|
|
};
|
|
|
|
})
|