summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/zip-archive/default.nix
blob: 38290c8cd54415d2c70899ac4ba6fe6d8d463aa6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ cabal, binary, digest, filepath, HUnit, mtl, time, utf8String
, zlib
}:

cabal.mkDerivation (self: {
  pname = "zip-archive";
  version = "0.1.3.4";
  sha256 = "0hvndr3gb7fiv4qjwjvic5mg7wq7h7nw3c3v5xq8fnlr1l943vyb";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ binary digest filepath mtl time utf8String 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 ];
  };
})