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

43 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchzip, git, gnupg, makeQtWrapper, pass, qtbase, qtsvg, qttools, qmakeHook }:
2015-06-25 13:37:15 +00:00
stdenv.mkDerivation rec {
name = "qtpass-${version}";
version = "1.1.1";
2015-06-25 13:37:15 +00:00
src = fetchzip {
2015-06-25 13:37:15 +00:00
url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz";
sha256 = "1x1ic9as0a60gz664sf8d1qiq64ji7q60g19x0rlm3bvcp2612c8";
2015-06-25 13:37:15 +00:00
};
buildInputs = [ git gnupg pass qtbase qtsvg qttools ];
nativeBuildInputs = [ makeQtWrapper qmakeHook ];
2015-06-25 13:37:15 +00:00
preConfigure = ''
qmakeFlags="$qmakeFlags CONFIG+=release DESTDIR=$out"
'';
2015-06-25 13:37:15 +00: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 13:37:15 +00:00
'';
postInstall = ''
wrapQtProgram $out/bin/qtpass \
--suffix PATH : ${git}/bin \
--suffix PATH : ${gnupg}/bin \
--suffix PATH : ${pass}/bin
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;
};
}