03b54bcd55
Signed-off-by: Ricky Elrod <ricky@elrod.me>
25 lines
784 B
Nix
25 lines
784 B
Nix
{ 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;
|
|
};
|
|
})
|