mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, pkg-config, qt4 ? null
|
|
, withQt5 ? false, qtbase ? null, qttools ? null
|
|
, darwin ? null
|
|
, libsecret
|
|
}:
|
|
|
|
assert withQt5 -> qtbase != null;
|
|
assert withQt5 -> qttools != null;
|
|
assert stdenv.isDarwin -> darwin != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qtkeychain-${if withQt5 then "qt5" else "qt4"}-${version}";
|
|
version = "0.9.1"; # verify after nix-build with `grep -R "set(PACKAGE_VERSION " result/`
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "frankosterfeld";
|
|
repo = "qtkeychain";
|
|
rev = "v${version}";
|
|
sha256 = "0h4wgngn2yl35hapbjs24amkjfbzsvnna4ixfhn87snjnq5lmjbc"; # v0.9.1
|
|
};
|
|
|
|
patches = (if withQt5 then [] else [ ./0001-Fixes-build-with-Qt4.patch ]) ++ (if stdenv.isDarwin then [ ./0002-Fix-install-name-Darwin.patch ] else []);
|
|
|
|
cmakeFlags = [ "-DQT_TRANSLATIONS_DIR=share/qt/translations" ];
|
|
|
|
nativeBuildInputs = [ cmake ]
|
|
++ stdenv.lib.optionals (!stdenv.isDarwin) [ pkg-config ] # for finding libsecret
|
|
;
|
|
|
|
buildInputs = stdenv.lib.optionals (!stdenv.isDarwin) [ libsecret ]
|
|
++ (if withQt5 then [ qtbase qttools ] else [ qt4 ])
|
|
++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
CoreFoundation Security
|
|
])
|
|
;
|
|
|
|
meta = {
|
|
description = "Platform-independent Qt API for storing passwords securely";
|
|
homepage = "https://github.com/frankosterfeld/qtkeychain";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|