mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
20 lines
649 B
Nix
20 lines
649 B
Nix
{ cabal, binary, digest, filepath, HUnit, mtl, text, time, zlib }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "zip-archive";
|
|
version = "0.2";
|
|
sha256 = "0d2n8mgfikyjzc4x7qm3vvpmhhf3mva9f0q6p9l1q9b7dlf8vmdv";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ binary digest filepath mtl text time zlib ];
|
|
testDepends = [ HUnit time ];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "http://github.com/jgm/zip-archive";
|
|
description = "Library for creating and modifying zip archives";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|