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