1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
nixpkgs/pkgs/development/libraries/haskell/io-choice/default.nix
Peter Simons a30df95691 Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
2013-02-25 00:32:40 +01:00

20 lines
575 B
Nix

{ cabal, hspec, liftedBase, monadControl, transformers
, transformersBase
}:
cabal.mkDerivation (self: {
pname = "io-choice";
version = "0.0.2";
sha256 = "0kxn357cc31gvaajg41h6xwpivq049dl1zd551xfvrvzndvy061f";
buildDepends = [
liftedBase monadControl transformers transformersBase
];
testDepends = [ hspec liftedBase monadControl transformers ];
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 ];
};
})