My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/libraries/quazip/default.nix

24 lines
624 B

{ fetchFromGitHub, stdenv, zlib, qtbase, qmake }:
10 years ago
stdenv.mkDerivation rec {
pname = "quazip";
version = "0.7.6";
10 years ago
src = fetchFromGitHub {
owner = "stachenov";
repo = pname;
rev = version;
sha256 = "1p6khy8fn9bwp14l6wd3sniwwm5v216l8xncfb7a6psjzvq5ypy6";
10 years ago
};
buildInputs = [ zlib qtbase ];
nativeBuildInputs = [ qmake ];
10 years ago
meta = {
description = "Provides access to ZIP archives from Qt programs";
license = stdenv.lib.licenses.gpl2Plus;
homepage = https://stachenov.github.io/quazip/; # Migrated from http://quazip.sourceforge.net/
platforms = stdenv.lib.platforms.linux;
10 years ago
};
}