nixpkgs/pkgs/development/libraries/quazip/default.nix

25 lines
720 B
Nix
Raw Normal View History

{ fetchFromGitHub, lib, stdenv, zlib, qtbase, cmake, fixDarwinDylibNames }:
2014-09-12 14:05:08 +01:00
stdenv.mkDerivation rec {
pname = "quazip";
2020-07-07 04:44:43 +01:00
version = "0.9.1";
2014-09-12 14:05:08 +01:00
src = fetchFromGitHub {
owner = "stachenov";
repo = pname;
2019-06-01 13:45:03 +01:00
rev = "v${version}";
2020-07-07 04:44:43 +01:00
sha256 = "11icgwv2xyxhd1hm1add51xv54zwkcqkg85d1xqlgiigvbm196iq";
2014-09-12 14:05:08 +01:00
};
buildInputs = [ zlib qtbase ];
2019-06-01 13:45:03 +01:00
nativeBuildInputs = [ cmake ]
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
2014-09-12 14:05:08 +01:00
meta = with lib; {
2014-09-14 16:53:12 +01:00
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;
2014-09-12 14:05:08 +01:00
};
}