summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/lifted-base/default.nix
blob: 3e4f95521bb5cdf2b4bef5bb0f58ef1805c8fc29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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;
  };
})