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

31 lines
1.1 KiB
Nix
Raw Normal View History

{ mkDerivation, base, binary, bytestring, bytestring-trie, cmdargs
, containers, directory, elm-compiler, elm-package, fetchgit
2015-11-20 17:14:49 +00:00
, filepath, haskeline, HUnit, mtl, parsec, QuickCheck, stdenv
, test-framework, test-framework-hunit, test-framework-quickcheck2
2016-07-15 23:11:41 +01:00
, text
}:
mkDerivation {
pname = "elm-repl";
2016-07-15 23:11:41 +01:00
version = "0.17.1";
src = fetchgit {
url = "https://github.com/elm-lang/elm-repl";
2016-07-15 23:11:41 +01:00
sha256 = "0nh2yfr0bi4rg1kak1gjaczpq56y1nii05b5y7hn6n4w651jkm28";
rev = "413ac0d4ee43c8542afd3041bbb7b8c903cd3d30";
};
isLibrary = false;
isExecutable = true;
2015-11-20 17:14:49 +00:00
executableHaskellDepends = [
base binary bytestring bytestring-trie cmdargs containers directory
2016-07-15 23:11:41 +01:00
elm-compiler elm-package filepath haskeline mtl parsec text
];
2015-11-20 17:14:49 +00:00
testHaskellDepends = [
base bytestring bytestring-trie cmdargs directory elm-compiler
2015-11-20 17:14:49 +00:00
elm-package filepath haskeline HUnit mtl parsec QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2
];
jailbreak = true;
homepage = "https://github.com/elm-lang/elm-repl";
2016-07-15 23:11:41 +01:00
description = "a REPL for Elm";
license = stdenv.lib.licenses.bsd3;
}