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

path-io: init at 1.7.0

parent 84a98ba0
No related merge requests found
......@@ -386,6 +386,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "parallel" "3.2.2.0"
, callHackage "password-types" "1.0.0.0"
, callHackage "password" "3.0.2.0"
, callHackage "path-io" "1.7.0"
, callHackage "path" "0.9.2"
, callHackage "pcg-random" "0.1.3.7"
, callHackage "pcre2" "2.2.1"
......
......@@ -495,6 +495,8 @@ final: prev: with pkgs.haskell.lib; {
path = prev.callPackage (./pkgs/path.nix) { };
path-io = prev.callPackage (./pkgs/path-io.nix) { };
pcg-random = prev.callPackage (./pkgs/pcg-random.nix) { };
pcre2 = prev.callPackage (./pkgs/pcre2.nix) { };
......
{ mkDerivation
, base
, containers
, directory
, dlist
, exceptions
, filepath
, hspec
, lib
, path
, temporary
, time
, transformers
, unix-compat
}:
mkDerivation {
pname = "path-io";
version = "1.7.0";
sha256 = "34bd41820298757bda9fbdc8a07ecb574bc4d78d1260025b1644813ea08d21cb";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
directory
dlist
exceptions
filepath
path
temporary
time
transformers
unix-compat
];
testHaskellDepends = [
base
directory
exceptions
filepath
hspec
path
transformers
unix-compat
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/mrkkrp/path-io";
description = "Interface to ‘directory’ package for users of ‘path’";
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