nixpkgs/pkgs/development/libraries/haskell/CC-delcont/default.nix
2014-05-03 23:01:00 -05:00

15 lines
404 B
Nix

{ cabal, mtl }:
cabal.mkDerivation (self: {
pname = "CC-delcont";
version = "0.2";
sha256 = "0bl71vj1ypzplx92kz27hhbpnwnxkz5g2q86m4fcmjmp4fym8kc1";
buildDepends = [ mtl ];
meta = {
homepage = "http://code.haskell.org/~dolio/CC-delcont";
description = "Delimited continuations and dynamically scoped variables";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})