2012-07-16 22:12:01 +02:00
|
|
|
{ cabal, mtl }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "unlambda";
|
2012-11-01 10:08:29 +01:00
|
|
|
version = "0.1.3";
|
|
|
|
sha256 = "0clcpkhg23a7ma72rjjpl2w8jpg2mdn4rgm3vf0vqr7lbyma1h89";
|
2012-07-16 22:12:01 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ mtl ];
|
|
|
|
meta = {
|
|
|
|
description = "Unlambda interpreter";
|
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-07-16 22:12:01 +02:00
|
|
|
};
|
|
|
|
})
|