1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/lifted-base/default.nix
2014-08-09 13:49:24 +02:00

24 lines
732 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, HUnit, monadControl, testFramework, testFrameworkHunit
, transformers, transformersBase
}:
cabal.mkDerivation (self: {
pname = "lifted-base";
version = "0.2.3.0";
sha256 = "0wbh9l7hsbgvfplxyamvpb8nq6w147zsd2yskylfmpw7kyz6yp9n";
buildDepends = [ monadControl transformersBase ];
testDepends = [
HUnit monadControl testFramework testFrameworkHunit transformers
transformersBase
];
doCheck = false;
meta = {
homepage = "https://github.com/basvandijk/lifted-base";
description = "lifted IO operations from the base library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})