You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
575 B
Nix

{ fetchurl, stdenv, zip, zlib, qt5, ... }:
stdenv.mkDerivation rec {
name = "quazip-0.7.1";
src = fetchurl {
url = "mirror://sourceforge/quazip/${name}.tar.gz";
sha256 = "1pijy6zn8kdx9m6wrckid24vkgp250hklbpmgrpixiam6l889jbq";
};
preConfigure = "cd quazip";
buildInputs = [ zlib qt5.qtbase ];
nativeBuildInputs = [ qt5.qmake ];
meta = {
description = "Provides access to ZIP archives from Qt programs";
license = stdenv.lib.licenses.gpl2Plus;
homepage = http://quazip.sourceforge.net/;
platforms = stdenv.lib.platforms.linux;
};
}