summary refs log tree commit diff
path: root/pkgs/development/compilers/idris/default.nix
blob: babaa2e24821b9182951dbbfe71a946521849c05 (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, filepath, happy, haskeline, mtl, parsec
, split, transformers
}:

cabal.mkDerivation (self: {
  pname = "idris";
  version = "0.9.6.1";
  sha256 = "1wy79rrm5pvg77i9nvwkcg6swsdbmg2izch48n4lj4idj0ga5g62";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [
    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 ];
  };
})