2019-04-27 16:15:05 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt4 ? null
|
2016-09-07 10:36:24 +01:00
|
|
|
, withQt5 ? false, qtbase ? null, qttools ? null
|
2018-03-11 23:44:55 +00:00
|
|
|
, darwin ? null
|
2019-04-27 16:15:05 +01:00
|
|
|
, libsecret
|
2016-09-07 10:36:24 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert withQt5 -> qtbase != null;
|
|
|
|
assert withQt5 -> qttools != null;
|
2018-03-11 23:44:55 +00:00
|
|
|
assert stdenv.isDarwin -> darwin != null;
|
2014-11-17 00:21:09 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-07 10:36:24 +01:00
|
|
|
name = "qtkeychain-${if withQt5 then "qt5" else "qt4"}-${version}";
|
2018-08-24 05:15:33 +01:00
|
|
|
version = "0.9.1"; # verify after nix-build with `grep -R "set(PACKAGE_VERSION " result/`
|
2014-11-17 00:21:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "frankosterfeld";
|
|
|
|
repo = "qtkeychain";
|
|
|
|
rev = "v${version}";
|
2018-08-24 05:15:33 +01:00
|
|
|
sha256 = "0h4wgngn2yl35hapbjs24amkjfbzsvnna4ixfhn87snjnq5lmjbc"; # v0.9.1
|
2014-11-17 00:21:09 +00:00
|
|
|
};
|
|
|
|
|
2018-09-05 08:28:50 +01:00
|
|
|
patches = if withQt5 then null else [ ./0001-Fixes-build-with-Qt4.patch ];
|
|
|
|
|
2019-01-26 04:32:44 +00:00
|
|
|
cmakeFlags = [ "-DQT_TRANSLATIONS_DIR=share/qt/translations" ];
|
2014-11-17 00:21:09 +00:00
|
|
|
|
2019-04-27 16:15:05 +01:00
|
|
|
nativeBuildInputs = [ cmake ]
|
|
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) [ pkgconfig ] # for finding libsecret
|
|
|
|
;
|
2016-09-07 10:36:24 +01:00
|
|
|
|
2019-04-27 16:15:05 +01:00
|
|
|
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) [ libsecret ]
|
|
|
|
++ (if withQt5 then [ qtbase qttools ] else [ qt4 ])
|
2018-03-11 23:44:55 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
2019-04-27 16:15:05 +01:00
|
|
|
CoreFoundation Security
|
2018-03-11 23:44:55 +00:00
|
|
|
])
|
|
|
|
;
|
2014-11-17 00:21:09 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Platform-independent Qt API for storing passwords securely";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/frankosterfeld/qtkeychain;
|
2014-11-18 19:33:18 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2018-03-11 23:44:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-11-17 00:21:09 +00:00
|
|
|
};
|
|
|
|
}
|