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