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

25 lines
729 B

{ fetchFromGitHub, stdenv, zlib, qtbase, cmake, fixDarwinDylibNames }:
10 years ago
stdenv.mkDerivation rec {
pname = "quazip";
version = "0.9.1";
10 years ago
src = fetchFromGitHub {
owner = "stachenov";
repo = pname;
rev = "v${version}";
sha256 = "11icgwv2xyxhd1hm1add51xv54zwkcqkg85d1xqlgiigvbm196iq";
10 years ago
};
buildInputs = [ zlib qtbase ];
nativeBuildInputs = [ cmake ]
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
10 years ago
meta = with stdenv.lib; {
description = "Provides access to ZIP archives from Qt programs";
license = licenses.lgpl21Plus;
homepage = "https://stachenov.github.io/quazip/"; # Migrated from http://quazip.sourceforge.net/
platforms = with platforms; linux ++ darwin;
10 years ago
};
}