d44e55866a
- cabal2nix: updated to version 1.30 - cmdargs: updated to version 0.9.5 - derive: updated to version 2.5.6 - hlint: updated to version 1.8.25 - io-choice: added version 0.0.1 svn path=/nixpkgs/trunk/; revision=33411
18 lines
503 B
Nix
18 lines
503 B
Nix
{ cabal, liftedBase, monadControl, transformers, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "io-choice";
|
|
version = "0.0.1";
|
|
sha256 = "0jwxqs65g88q9l0w4xzllj7svz3qr2zgiaq2fyq5jmh33lz74r63";
|
|
buildDepends = [
|
|
liftedBase monadControl transformers transformersBase
|
|
];
|
|
meta = {
|
|
description = "Choice for IO and lifted IO";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|