nixpkgs/pkgs/applications/misc/qtpass/default.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

2019-08-28 22:25:52 +00:00
{ stdenv, lib, mkDerivation, fetchFromGitHub, fetchpatch
, git, gnupg, pass, qtbase, qtsvg, qttools, qmake
}:
2015-06-25 13:37:15 +00:00
mkDerivation rec {
pname = "qtpass";
2019-08-28 22:25:52 +00:00
version = "1.3.0";
2015-06-25 13:37:15 +00:00
2016-09-28 04:32:15 +00:00
src = fetchFromGitHub {
owner = "IJHack";
repo = "QtPass";
2016-09-28 04:32:15 +00:00
rev = "v${version}";
2019-08-28 22:25:52 +00:00
sha256 = "0v3ca4fdjk6l24vc9wlc0i7r6fdj85kjmnb7jvicd3f8xi9mvhnv";
2015-06-25 13:37:15 +00:00
};
buildInputs = [ git gnupg pass qtbase qtsvg qttools ];
2019-08-28 22:25:52 +00:00
nativeBuildInputs = [ qmake ];
2015-06-25 13:37:15 +00:00
# Fix missing app icon on Wayland. Has been upstreamed and should be safe to
# remove in versions > 1.3.0
patches = [
(fetchpatch {
url = "https://github.com/IJHack/QtPass/commit/aba8c4180f0ab3d66c44f88b21f137b19d17bde8.patch";
sha256 = "009bcq0d75khmaligzd7736xdzy6a8s1m9dgqybn70h801h92fcr";
})
];
enableParallelBuilding = true;
2015-06-25 13:37:15 +00:00
qtWrapperArgs = [
2019-08-28 22:25:52 +00:00
"--suffix PATH : ${lib.makeBinPath [ git gnupg pass ]}"
];
postInstall = ''
2018-01-05 01:45:50 +00:00
install -D qtpass.desktop $out/share/applications/qtpass.desktop
install -D artwork/icon.svg $out/share/icons/hicolor/scalable/apps/qtpass-icon.svg
2015-06-25 13:37:15 +00:00
'';
meta = with stdenv.lib; {
description = "A multi-platform GUI for pass, the standard unix password manager";
homepage = https://qtpass.org;
2015-06-25 13:37:15 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.hrdinka ];
platforms = platforms.all;
};
}