nixpkgs/pkgs/development/compilers/idris/default.nix

26 lines
718 B
Nix
Raw Normal View History

2012-09-17 16:17:55 +02:00
{ cabal, binary, Cabal, filepath, happy, haskeline, mtl, parsec
2013-01-25 14:52:03 +01:00
, split, transformers
}:
cabal.mkDerivation (self: {
pname = "idris";
2013-03-11 11:20:20 +01:00
version = "0.9.7";
sha256 = "0y3rnxbs2s7kxlzlc347vwpylw2p0pdz50zgkyii21gd6klqvd45";
isLibrary = false;
isExecutable = true;
buildDepends = [
2013-01-25 14:52:03 +01:00
binary Cabal filepath haskeline mtl parsec split transformers
];
buildTools = [ happy ];
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;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})