1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00
nixpkgs/pkgs/development/libraries/haskell/lifted-base/default.nix
Peter Simons 0611807038 haskell-lifted-base: update to version 0.2.2.2
The test suite must be disabled because it depends on transformers 0.4.x, which
we cannot provide because it's a core package that no compiler ships yet.
2014-05-16 18:51:38 +02:00

23 lines
715 B
Nix

{ cabal, HUnit, monadControl, testFramework, testFrameworkHunit
, transformers, transformersBase
}:
cabal.mkDerivation (self: {
pname = "lifted-base";
version = "0.2.2.2";
sha256 = "02qjagh4a3zvad7xyvwjd6nkh44c41bqj32ddpn7ms1fv4sl0mam";
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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})