567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
44 lines
879 B
Nix
44 lines
879 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
stdenv,
|
|
zlib,
|
|
qtbase,
|
|
qt5compat ? null,
|
|
cmake,
|
|
fixDarwinDylibNames,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "quazip";
|
|
version = "1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stachenov";
|
|
repo = "quazip";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-AOamvy2UgN8n7EZ8EidWkVzRICzEXMmvZsB18UwxIVo=";
|
|
};
|
|
|
|
buildInputs = [
|
|
zlib
|
|
qtbase
|
|
];
|
|
propagatedBuildInputs = [ qt5compat ];
|
|
nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
meta = {
|
|
description = "Provides access to ZIP archives from Qt programs";
|
|
license = lib.licenses.lgpl21Plus;
|
|
homepage = "https://stachenov.github.io/quazip/"; # Migrated from http://quazip.sourceforge.net/
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|