mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Fixed quazip default.nix
This commit is contained in:
parent
8746d4b6bc
commit
8818e63dcd
1 changed files with 4 additions and 4 deletions
|
@ -10,14 +10,14 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configurePhase = "cd quazip && qmake quazip.pro";
|
configurePhase = "cd quazip && qmake quazip.pro";
|
||||||
|
|
||||||
installPhase = "INSTALL_ROOT=$out make install";
|
installFlags = "INSTALL_ROOT=$out";
|
||||||
|
|
||||||
buildInputs = [ zlib qt5 ];
|
buildInputs = [ zlib qt5 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A Qt/C++ wrapper for Gilles Vollant's ZIP/UNZIP C package (minizip). Provides access to ZIP archives from Qt programs using QIODevice API.";
|
description = "Provides access to ZIP archives from Qt programs";
|
||||||
license = [ "GPLv2+" ];
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
homepage = http://quazip.sourceforge.net/;
|
homepage = http://quazip.sourceforge.net/;
|
||||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue