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

42 lines
1.6 KiB
Nix
Raw Normal View History

{ mkDerivation, aeson, aeson-pretty_0_7_2, ansi-terminal, ansi-wl-pprint
2015-11-20 17:14:49 +00:00
, base, binary, bytestring, containers, directory, edit-distance
, fetchgit, filemanip, filepath, HUnit, indents
, language-ecmascript, language-glsl, mtl, parsec, pretty, process
, QuickCheck, stdenv, test-framework, test-framework-hunit
2016-07-15 23:11:41 +01:00
, test-framework-quickcheck2, text, union-find
}:
mkDerivation {
pname = "elm-compiler";
2016-11-18 01:55:42 +00:00
version = "0.18";
src = fetchgit {
url = "https://github.com/elm-lang/elm-compiler";
2016-11-18 01:55:42 +00:00
sha256 = "09fmrbfpc1kzc3p9h79w57b9qjhajdswc4jfm9gyjw95vsiwasgh";
rev = "eb97f2a5dd5421c708a91b71442e69d02453cc80";
};
isLibrary = true;
isExecutable = true;
2015-11-20 17:14:49 +00:00
libraryHaskellDepends = [
aeson aeson-pretty_0_7_2 ansi-terminal ansi-wl-pprint base binary
2015-11-20 17:14:49 +00:00
bytestring containers directory edit-distance filepath indents
language-ecmascript language-glsl mtl parsec pretty process text
2016-07-15 23:11:41 +01:00
union-find
];
2015-11-20 17:14:49 +00:00
executableHaskellDepends = [
aeson base binary directory filepath process text
];
testHaskellDepends = [
aeson aeson-pretty_0_7_2 ansi-terminal ansi-wl-pprint base binary
2015-11-20 17:14:49 +00:00
bytestring containers directory edit-distance filemanip filepath
HUnit indents language-ecmascript language-glsl mtl parsec pretty
process QuickCheck test-framework test-framework-hunit
2016-07-15 23:11:41 +01:00
test-framework-quickcheck2 text union-find
];
jailbreak = true;
homepage = http://elm-lang.org;
2016-07-15 23:11:41 +01:00
description = "Values to help with elm-package, elm-make, and elm-lang.org.";
license = stdenv.lib.licenses.bsd3;
2016-11-18 01:55:42 +00:00
# added manually since tests are not passing
# https://travis-ci.org/elm-lang/elm-compiler/builds/176845852
doCheck = false;
}