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-01-04 10:17:23 -08:00
|
|
|
version = "0.1.3.3";
|
|
|
|
sha256 = "0zzps6s6lsv35qv1xx1fwipk2nwv255wpa956mvzbwdr47pgqjwi";
|
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 ];
|
2013-02-24 14:34:35 -08:00
|
|
|
doCheck = false;
|
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
|
|
|
})
|