lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v206 23 lines 600 B view raw
1{ fetchurl, stdenv, zip, zlib, qt }: 2 3stdenv.mkDerivation rec { 4 name = "quazip-0.7.1"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/quazip/${name}.tar.gz"; 8 sha256 = "1pijy6zn8kdx9m6wrckid24vkgp250hklbpmgrpixiam6l889jbq"; 9 }; 10 11 configurePhase = "cd quazip && qmake quazip.pro"; 12 13 installFlags = "INSTALL_ROOT=$(out)"; 14 15 buildInputs = [ zlib (qt.base or qt) ]; 16 17 meta = { 18 description = "Provides access to ZIP archives from Qt programs"; 19 license = stdenv.lib.licenses.gpl2Plus; 20 homepage = http://quazip.sourceforge.net/; 21 platforms = stdenv.lib.platforms.linux; 22 }; 23}