3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
405 B
Nix
17 lines
405 B
Nix
{ 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 ];
|
|
};
|
|
})
|