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

27 lines
744 B
Nix
Raw Normal View History

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