29 lines
968 B
Nix
29 lines
968 B
Nix
{ cabal, ansiTerminal, ansiWlPprint, binary, boehmgc, Cabal
|
|
, deepseq, filepath, gmp, happy, haskeline, languageJava, mtl
|
|
, network, parsers, split, text, time, transformers, trifecta
|
|
, unorderedContainers, utf8String, vector, vectorBinaryInstances
|
|
, xml
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "idris";
|
|
version = "0.9.10.1";
|
|
sha256 = "194gbpk8fy64maj9lcwj9hkbndc3287bh9mz2jm09vd11i23iyg1";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
ansiTerminal ansiWlPprint binary Cabal deepseq filepath haskeline
|
|
languageJava mtl network parsers split text time transformers
|
|
trifecta unorderedContainers utf8String vector
|
|
vectorBinaryInstances xml
|
|
];
|
|
buildTools = [ happy ];
|
|
extraLibraries = [ boehmgc gmp ];
|
|
meta = {
|
|
homepage = "http://www.idris-lang.org/";
|
|
description = "Functional Programming Language with Dependent Types";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|