Add haskell/purescript :D

Signed-off-by: Ricky Elrod <ricky@elrod.me>
This commit is contained in:
Ricky Elrod
2014-05-27 03:07:05 -04:00
parent 8228ca0479
commit 03b54bcd55
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ cabal, cmdtheline, filepath, haskeline, monadUnify, mtl, parsec
, patternArrows, time, transformers, unorderedContainers
, utf8String, xdgBasedir
}:
cabal.mkDerivation (self: {
pname = "purescript";
version = "0.5.2.1";
sha256 = "1dr34capgjlyjsaghsv11zz6ph5l0y8dz0q398f0f3hplcal3f58";
isLibrary = true;
isExecutable = true;
buildDepends = [
cmdtheline filepath haskeline monadUnify mtl parsec patternArrows
time transformers unorderedContainers utf8String xdgBasedir
];
# The example don't seem to get packaged in the release.
doCheck = false;
meta = {
homepage = "http://www.purescript.org/";
description = "PureScript Programming Language Compiler";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})