nixpkgs/pkgs/development/libraries/haskell/unlambda/default.nix
Luca Bruno 0cba70391b Revert "haskell-unlambda: update to version 0.1.3"
This reverts commit b4a3a61285.

The unlambda package failed to build after this change, reverting.
2014-07-09 12:43:37 +02:00

18 lines
432 B
Nix

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