nixpkgs/pkgs/development/compilers/idris/default.nix
2012-09-17 16:17:55 +02:00

23 lines
654 B
Nix

{ cabal, binary, Cabal, filepath, happy, haskeline, mtl, parsec
, transformers
}:
cabal.mkDerivation (self: {
pname = "idris";
version = "0.9.3";
sha256 = "1g8mb5g4w6zgcfx2g7l5ksr0lsjfghznxgh684yzlg8pfzah0hqh";
isLibrary = false;
isExecutable = true;
buildDepends = [
binary Cabal filepath haskeline mtl parsec 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 ];
};
})