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

cabal.mkDerivation (self: {
  pname = "zip-archive";
  version = "0.1.1.7";
  sha256 = "1q52v18kl1j049kk3yb7rp0k27p6q7r72mg1vcbdid6qd7a9dh48";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    binary Cabal digest filepath mtl utf8String zlib
  ];
  meta = {
    homepage = "http://github.com/jgm/zip-archive";
    description = "Library for creating and modifying zip archives";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})