add elm-reactor to the package list

This commit is contained in:
karsten gebbert 2014-11-04 11:47:32 +01:00
parent bbd9f55947
commit 9cbbd93c74
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, blazeHtml, blazeMarkup, cmdargs, Elm, fetchgit, filepath
, fsnotify, HTTP, mtl, snapCore, snapServer, systemFilepath, time
, transformers, unorderedContainers, websockets, websocketsSnap
}:
cabal.mkDerivation (self: {
pname = "elm-reactor";
version = "0.1";
src = fetchgit {
url = "git://github.com/elm-lang/elm-reactor.git";
sha256 = "1e45ef26a9b1c1748737dce071a7f2587d0d22643085942a98006f9b11d11dfe";
rev = "8715046c5bc8b18f0540069c1a9a65f3aa8332e1";
};
isLibrary = false;
isExecutable = true;
buildDepends = [
blazeHtml blazeMarkup cmdargs Elm filepath fsnotify HTTP mtl
snapCore snapServer systemFilepath time transformers
unorderedContainers websockets websocketsSnap
];
meta = {
homepage = "http://elm-lang.org";
description = "Interactive development tool for Elm programs";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -754,6 +754,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
elmRepl = callPackage ../development/compilers/elm/elm-repl.nix {};
elmReactor = callPackage ../development/compilers/elm/elm-reactor.nix {};
elmGet = callPackage ../development/compilers/elm/elm-get.nix {
optparseApplicative = self.optparseApplicative_0_10_0;
};