2015-08-13 13:50:59 +02:00
|
|
|
{ mkDerivation, base, binary, bytestring, bytestring-trie, cmdargs
|
|
|
|
, containers, directory, elm-compiler, elm-package, fetchgit
|
2015-11-20 18:14:49 +01:00
|
|
|
, filepath, haskeline, HUnit, mtl, parsec, QuickCheck, stdenv
|
|
|
|
, test-framework, test-framework-hunit, test-framework-quickcheck2
|
2015-08-13 13:50:59 +02:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "elm-repl";
|
2016-05-11 13:30:09 +02:00
|
|
|
version = "0.17";
|
2015-08-13 13:50:59 +02:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/elm-lang/elm-repl";
|
2016-06-02 13:26:44 +02:00
|
|
|
sha256 = "0bpmkm7q3a0h4hwlbwcnzaqgf6n5p1qw65z8kw84f52s5bndc0wc";
|
2016-05-11 13:30:09 +02:00
|
|
|
rev = "95b4555cff6b6e2a55a4ea3dab00bfb39dfebf0d";
|
2015-08-13 13:50:59 +02:00
|
|
|
};
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2015-11-20 18:14:49 +01:00
|
|
|
executableHaskellDepends = [
|
2015-08-13 13:50:59 +02:00
|
|
|
base binary bytestring bytestring-trie cmdargs containers directory
|
2015-11-20 18:14:49 +01:00
|
|
|
elm-compiler elm-package filepath haskeline mtl parsec
|
2015-08-13 13:50:59 +02:00
|
|
|
];
|
2015-11-20 18:14:49 +01:00
|
|
|
testHaskellDepends = [
|
2015-08-13 13:50:59 +02:00
|
|
|
base bytestring bytestring-trie cmdargs directory elm-compiler
|
2015-11-20 18:14:49 +01:00
|
|
|
elm-package filepath haskeline HUnit mtl parsec QuickCheck
|
2015-08-13 13:50:59 +02:00
|
|
|
test-framework test-framework-hunit test-framework-quickcheck2
|
|
|
|
];
|
|
|
|
jailbreak = true;
|
|
|
|
homepage = "https://github.com/elm-lang/elm-repl";
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "A REPL for Elm";
|
2015-08-13 13:50:59 +02:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
}
|