nixpkgs/pkgs/development/libraries/haskell/lifted-base/default.nix
2014-03-11 13:50:49 +01:00

24 lines
741 B
Nix

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