summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unlambda/default.nix
blob: 2344e4606932526f7a0ec9212722ae5ddd3c6a1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, mtl }:

cabal.mkDerivation (self: {
  pname = "unlambda";
  version = "0.1.3";
  sha256 = "0clcpkhg23a7ma72rjjpl2w8jpg2mdn4rgm3vf0vqr7lbyma1h89";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ mtl ];
  meta = {
    description = "Unlambda interpreter";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})