2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, binary, digest, filepath, HUnit, mtl, time, utf8String
|
|
|
|
, zlib
|
|
|
|
}:
|
2009-06-30 01:04:12 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-30 01:04:12 -07:00
|
|
|
pname = "zip-archive";
|
2013-03-06 02:06:01 -08:00
|
|
|
version = "0.1.3.4";
|
|
|
|
sha256 = "0hvndr3gb7fiv4qjwjvic5mg7wq7h7nw3c3v5xq8fnlr1l943vyb";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-10-18 05:16:37 -07:00
|
|
|
buildDepends = [ binary digest filepath mtl time utf8String zlib ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [ HUnit time ];
|
2009-06-30 01:04:12 -07:00
|
|
|
meta = {
|
2011-08-09 16:00:20 -07:00
|
|
|
homepage = "http://github.com/jgm/zip-archive";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Library for creating and modifying zip archives";
|
2012-04-06 12:48:24 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 16:00:20 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-30 01:04:12 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|