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

45 lines
1.2 KiB
Nix
Raw Normal View History

2017-05-17 20:26:11 +01:00
{ stdenv, fetchFromGitHub, git, gnupg, pass, qtbase, qtsvg, qttools, qmake, makeWrapper }:
2015-06-25 14:37:15 +01:00
stdenv.mkDerivation rec {
name = "qtpass-${version}";
2017-01-06 20:29:25 +00:00
version = "1.1.6";
2015-06-25 14:37:15 +01:00
2016-09-28 05:32:15 +01:00
src = fetchFromGitHub {
owner = "IJHack";
repo = "QtPass";
2016-09-28 05:32:15 +01:00
rev = "v${version}";
2017-01-06 20:29:25 +00:00
sha256 = "0jq5a1cvqvsjwld0nldl6kmcz9g59hiccmbg98xwji04n8174y7j";
2015-06-25 14:37:15 +01:00
};
buildInputs = [ git gnupg pass qtbase qtsvg qttools ];
2017-05-17 20:26:11 +01:00
nativeBuildInputs = [ makeWrapper qmake ];
2015-06-25 14:37:15 +01:00
preConfigure = ''
2017-05-17 20:26:11 +01:00
qmakeFlags="$qmakeFlags DESTDIR=$out"
'';
2015-06-25 14:37:15 +01:00
installPhase = ''
mkdir $out/bin
mv $out/qtpass $out/bin
install -D {,$out/share/applications/}qtpass.desktop
install -D artwork/icon.svg $out/share/icons/hicolor/scalable/apps/qtpass-icon.svg
runHook postInstall
2015-06-25 14:37:15 +01:00
'';
postInstall = ''
2017-05-17 20:26:11 +01:00
wrapProgram $out/bin/qtpass \
--suffix PATH : ${git}/bin \
--suffix PATH : ${gnupg}/bin \
--suffix PATH : ${pass}/bin
2015-06-25 14:37:15 +01:00
'';
meta = with stdenv.lib; {
description = "A multi-platform GUI for pass, the standard unix password manager";
homepage = https://qtpass.org;
2015-06-25 14:37:15 +01:00
license = licenses.gpl3;
maintainers = [ maintainers.hrdinka ];
platforms = platforms.all;
};
}