2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, binary, digest, filepath, mtl, 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";
|
2012-04-06 21:48:24 +02:00
|
|
|
version = "0.1.1.8";
|
|
|
|
sha256 = "0rq4jk1sxi6lrc7d7sh500lh83v2fxxrfh2gknqiyzxd3wh364y1";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ binary digest filepath mtl utf8String zlib ];
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-30 10:04:12 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|