nixpkgs/pkgs/development/libraries/haskell/unlambda/default.nix

20 lines
456 B
Nix
Raw Normal View History

2012-07-16 22:12:01 +02:00
{ cabal, mtl }:
cabal.mkDerivation (self: {
pname = "unlambda";
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;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
2012-07-16 22:12:01 +02:00
};
})