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

zip-archive: init at 0.4.2.2

parent 6159d6ed
Branches
Tags
No related merge requests found
...@@ -833,4 +833,5 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -833,4 +833,5 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "xml-conduit" "1.9.1.1" , callHackage "xml-conduit" "1.9.1.1"
, callHackage "xml" "1.3.14" , callHackage "xml" "1.3.14"
, callHackage "yaml" "0.11.8.0" , callHackage "yaml" "0.11.8.0"
, callHackage "zip-archive" "0.4.2.2"
] ]
...@@ -1293,4 +1293,6 @@ self: with pkgs.haskell.lib; { ...@@ -1293,4 +1293,6 @@ self: with pkgs.haskell.lib; {
yaml = self.callPackage (./pkgs/yaml.nix) { }; yaml = self.callPackage (./pkgs/yaml.nix) { };
zip-archive = self.callPackage (./pkgs/zip-archive.nix) { };
} }
{ mkDerivation
, array
, base
, binary
, bytestring
, containers
, digest
, directory
, filepath
, HUnit
, lib
, mtl
, pretty
, process
, temporary
, text
, time
, unix
, which
, zlib
}:
mkDerivation {
pname = "zip-archive";
version = "0.4.2.2";
sha256 = "a4016b404356e5fe38a89fceb8c88b01251f7e3fe7832323a50a3f732a346709";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array
base
binary
bytestring
containers
digest
directory
filepath
mtl
pretty
text
time
unix
zlib
];
testHaskellDepends = [
base
bytestring
directory
filepath
HUnit
process
temporary
time
unix
];
testToolDepends = [ which ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/jgm/zip-archive";
description = "Library for creating and modifying zip archives";
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