1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/quazip/default.nix

24 lines
599 B
Nix
Raw Normal View History

2014-09-12 14:05:08 +01:00
{ fetchurl, stdenv, zip, zlib, qt5 }:
stdenv.mkDerivation rec {
name = "quazip-0.7";
src = fetchurl {
url = "mirror://sourceforge/quazip/${name}.tar.gz";
sha256 = "8af5e7f9bff98b5a2982800a292eae0176c2b41a98a8deab14f4e1cbe07674a4";
};
configurePhase = "cd quazip && qmake quazip.pro";
installFlags = "INSTALL_ROOT=$(out)";
2014-09-12 14:05:08 +01:00
buildInputs = [ zlib qt5 ];
meta = {
2014-09-14 16:53:12 +01:00
description = "Provides access to ZIP archives from Qt programs";
license = stdenv.lib.licenses.gpl2Plus;
2014-09-12 14:05:08 +01:00
homepage = http://quazip.sourceforge.net/;
2014-09-14 16:53:12 +01:00
platforms = stdenv.lib.platforms.linux;
2014-09-12 14:05:08 +01:00
};
}