summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/Agda/default.nix
blob: 724dabbab1b2154f28cab3cd788b48e705d6c753 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ cabal, alex, binary, happy, hashable, hashtables, haskeline
, haskellSrcExts, mtl, QuickCheck, syb, xhtml, zlib
}:

cabal.mkDerivation (self: {
  pname = "Agda";
  version = "2.3.0";
  sha256 = "1p0cwf3d146z73gp49cm8fmk33hcbjsvyijbakm1871ssc5i73k0";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    binary hashable hashtables haskeline haskellSrcExts mtl QuickCheck
    syb xhtml zlib
  ];
  buildTools = [ alex happy ];
  meta = {
    homepage = "http://wiki.portal.chalmers.se/agda/";
    description = "A dependently typed functional programming language and proof assistant";
    license = "unknown";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})