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

38 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, git, gnupg, makeQtWrapper, pass, qtbase, qtsvg, qttools, qmakeHook }:
2015-06-25 14:37:15 +01:00
stdenv.mkDerivation rec {
name = "qtpass-${version}";
2016-01-26 11:36:00 +00:00
version = "1.1.0";
2015-06-25 14:37:15 +01:00
src = fetchurl {
url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz";
2016-01-26 11:36:00 +00:00
sha256 = "60b458062f54184057e55dbd9c93958a8bf845244ffd70b9cb31bf58697f0dc6";
2015-06-25 14:37:15 +01:00
};
buildInputs = [ git gnupg makeQtWrapper pass qtbase qtsvg qttools qmakeHook ];
2015-06-25 14:37:15 +01:00
preConfigure = ''
qmakeFlags="$qmakeFlags CONFIG+=release DESTDIR=$out"
'';
2015-06-25 14:37:15 +01:00
installPhase = ''
mkdir $out/bin
mv $out/qtpass $out/bin
'';
postFixup = ''
wrapQtProgram $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://github.com/IJHack/qtpass;
license = licenses.gpl3;
maintainers = [ maintainers.hrdinka ];
platforms = platforms.all;
};
}