summary refs log tree commit diff
path: root/pkgs/development/compilers/idris/default.nix
blob: fe9ce209191e80c49ad4fc24444d1e7a2a2e920f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ cabal, binary, Cabal, epic, filepath, happy, haskeline, mtl
, parsec, transformers
}:

cabal.mkDerivation (self: {
  pname = "idris";
  version = "0.9.2.1";
  sha256 = "16jbmyza57066s3wmkvgwn11kqn0nzkjrrvsinh9xd69a79h2iiy";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [
    binary Cabal epic 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 ];
  };
})