summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unlambda/default.nix
blob: 474bb1a8b092c99ec801c826ad7ed04c1302ca09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
  };
})