1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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.
This commit is contained in:
Peter Simons 2014-05-15 20:05:46 +02:00
parent 14958391df
commit 0611807038

View file

@ -1,18 +1,17 @@
{ cabal, baseUnicodeSymbols, HUnit, monadControl, testFramework
, testFrameworkHunit, transformers, transformersBase
{ cabal, HUnit, monadControl, testFramework, testFrameworkHunit
, transformers, transformersBase
}:
cabal.mkDerivation (self: {
pname = "lifted-base";
version = "0.2.2.1";
sha256 = "13w1y67wng5rv90fsikkwpvx2ajmq5ybnxrx9b2x0y0zbcy7pzk8";
buildDepends = [
baseUnicodeSymbols monadControl transformersBase
];
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";