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

unliftio: init at 0.2.23.0

parent 83c2674f
No related merge requests found
...@@ -505,6 +505,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -505,6 +505,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "unicode-transforms" "0.4.0.1" , callHackage "unicode-transforms" "0.4.0.1"
, callHackage "universe-base" "1.1.3" , callHackage "universe-base" "1.1.3"
, callHackage "unliftio-core" "0.2.0.1" , callHackage "unliftio-core" "0.2.0.1"
, callHackage "unliftio" "0.2.23.0"
, callHackage "unordered-containers" "0.2.19.1" , callHackage "unordered-containers" "0.2.19.1"
, callHackage "validity" "0.12.0.1" , callHackage "validity" "0.12.0.1"
, callHackage "validity-aeson" "0.2.0.5" , callHackage "validity-aeson" "0.2.0.5"
......
...@@ -625,6 +625,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -625,6 +625,8 @@ final: prev: with pkgs.haskell.lib; {
universe-base = prev.callPackage (./pkgs/universe-base.nix) { }; universe-base = prev.callPackage (./pkgs/universe-base.nix) { };
unliftio = prev.callPackage (./pkgs/unliftio.nix) { };
unliftio-core = prev.callPackage (./pkgs/unliftio-core.nix) { }; unliftio-core = prev.callPackage (./pkgs/unliftio-core.nix) { };
unordered-containers = prev.callPackage (./pkgs/unordered-containers.nix) { }; unordered-containers = prev.callPackage (./pkgs/unordered-containers.nix) { };
......
{ mkDerivation
, async
, base
, bytestring
, containers
, deepseq
, directory
, filepath
, gauge
, hspec
, lib
, process
, QuickCheck
, safe-exceptions
, stm
, time
, transformers
, unix
, unliftio-core
}:
mkDerivation {
pname = "unliftio";
version = "0.2.23.0";
sha256 = "2d86a3deef6d801991aa6c837c5e6c0d3db916f33226be1428a5a04f626be4fd";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
async
base
bytestring
deepseq
directory
filepath
process
safe-exceptions
stm
time
transformers
unix
unliftio-core
];
testHaskellDepends = [
async
base
bytestring
containers
deepseq
directory
filepath
hspec
process
QuickCheck
safe-exceptions
stm
time
transformers
unix
unliftio-core
];
benchmarkHaskellDepends = [
async
base
bytestring
deepseq
directory
filepath
gauge
process
safe-exceptions
stm
time
transformers
unix
unliftio-core
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme";
description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)";
license = lib.licenses.mit;
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