haskell-zip-archive: add version 0.2.3.2
Use latest zip archive only with GHC 7.8.2 so that we don't have to override 'binary' everywhere else.
This commit is contained in:
19
pkgs/development/libraries/haskell/zip-archive/0.2.3.2.nix
Normal file
19
pkgs/development/libraries/haskell/zip-archive/0.2.3.2.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ cabal, binary, digest, filepath, HUnit, mtl, text, time, zlib }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "zip-archive";
|
||||
version = "0.2.3.2";
|
||||
sha256 = "1y69sk6jyw1klgpl6bcamq1i9wy1536hz9x4s9b8n375sbhj10f1";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ binary digest filepath mtl text time zlib ];
|
||||
testDepends = [ HUnit time ];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "http://github.com/jgm/zip-archive";
|
||||
description = "Library for creating and modifying zip archives";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user