nixpkgs/pkgs/development/compilers/elm/elm.nix

41 lines
1.4 KiB
Nix
Raw Normal View History

2014-10-13 10:39:07 +00:00
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2013-10-23 08:29:20 +00:00
{ cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup
2014-10-13 10:39:07 +00:00
, cheapskate, cmdargs, filemanip, filepath, highlightingKate, HUnit
, indents, languageEcmascript, languageGlsl, mtl, parsec
, QuickCheck, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, text, transformers, unionFind
, unorderedContainers
2013-06-12 11:23:00 +00:00
}:
cabal.mkDerivation (self: {
pname = "Elm";
2014-10-13 10:39:07 +00:00
version = "0.13";
sha256 = "1l6p00h0717blwvia0gvqpsakq8jy44fxc6brr4qxs5g4yjcjnmh";
2013-06-12 11:23:00 +00:00
isLibrary = true;
isExecutable = true;
buildDepends = [
2014-10-13 10:39:07 +00:00
aeson aesonPretty binary blazeHtml blazeMarkup cheapskate cmdargs
filepath highlightingKate indents languageEcmascript languageGlsl
mtl parsec text transformers unionFind unorderedContainers
2013-06-12 11:23:00 +00:00
];
2014-01-25 15:52:41 +00:00
testDepends = [
2014-10-13 10:39:07 +00:00
aeson aesonPretty binary blazeHtml blazeMarkup cheapskate cmdargs
filemanip filepath highlightingKate HUnit indents
languageEcmascript languageGlsl mtl parsec QuickCheck testFramework
testFrameworkHunit testFrameworkQuickcheck2 text transformers
unionFind unorderedContainers
2014-01-25 15:52:41 +00:00
];
doCheck = false;
preConfigure = ''
rm -f Setup.hs
echo -e "import Distribution.Simple\nmain=defaultMain\n" > Setup.hs
'';
2013-06-12 11:23:00 +00:00
meta = {
homepage = "http://elm-lang.org";
description = "The Elm language module";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})