mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, qt4 ? null
|
|
, withQt5 ? false, qtbase ? null, qttools ? null
|
|
, darwin ? null
|
|
}:
|
|
|
|
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 null else [ ./0001-Fixes-build-with-Qt4.patch ];
|
|
|
|
cmakeFlags = [ "-DQT_TRANSLATIONS_DIR=share/qt/translations" ]
|
|
++ stdenv.lib.optional stdenv.isDarwin [
|
|
# correctly detect the compiler
|
|
# for details see cmake --help-policy CMP0025
|
|
"-DCMAKE_POLICY_DEFAULT_CMP0025=NEW"
|
|
]
|
|
;
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = if withQt5 then [ qtbase qttools ] else [ qt4 ]
|
|
++ stdenv.lib.optional 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;
|
|
};
|
|
}
|