Skip to content
Snippets Groups Projects
Commit 73b4df7c authored by Daniel Firth's avatar Daniel Firth
Browse files

resourcet: init at 1.3.0

parent df150ef2
Branches
Tags
No related merge requests found
......@@ -380,6 +380,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "rebase" "1.16"
, callHackage "refined" "0.8"
, callHackage "resource-pool" "0.3.1.0"
, callHackage "resourcet" "1.3.0"
, callHackage "rerebase" "1.15.0.3"
, callHackage "relude" "1.1.0.0"
, callHackage "retry" "0.9.3.0"
......
......@@ -471,6 +471,8 @@ final: prev: with pkgs.haskell.lib; {
resource-pool = prev.callPackage (./pkgs/resource-pool.nix) { };
resourcet = prev.callPackage (./pkgs/resourcet.nix) { };
retry = prev.callPackage (./pkgs/retry.nix) { };
rope-utf16-splay = prev.callPackage (./pkgs/rope-utf16-splay.nix) { };
......
{ mkDerivation
, base
, containers
, exceptions
, hspec
, lib
, mtl
, primitive
, transformers
, unliftio-core
}:
mkDerivation {
pname = "resourcet";
version = "1.3.0";
sha256 = "ec601785ee42a201f32adb205b8685c983f18757b1bd33d2e806d571e0f9996b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
exceptions
mtl
primitive
transformers
unliftio-core
];
testHaskellDepends = [ base exceptions hspec transformers ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/snoyberg/conduit";
description = "Deterministic allocation and freeing of scarce resources";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment