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

36 lines
982 B
Nix
Raw Normal View History

2015-12-20 02:38:09 +00:00
{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qtbase, qttools }:
2015-06-25 13:37:15 +00:00
stdenv.mkDerivation rec {
name = "qtpass-${version}";
2016-01-13 12:02:03 +00:00
version = "1.0.6";
2015-06-25 13:37:15 +00:00
src = fetchurl {
url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz";
2016-01-13 12:02:03 +00:00
sha256 = "ccad9a06e3efa23278fa3e958185bf24fb3800874d8165be4ae6649706a2ab1c";
2015-06-25 13:37:15 +00:00
};
2015-12-20 02:38:09 +00:00
buildInputs = [ git gnupg makeWrapper pass qtbase qttools ];
2015-06-25 13:37:15 +00:00
configurePhase = "qmake CONFIG+=release PREFIX=$out DESTDIR=$out";
installPhase = ''
mkdir $out/bin
mv $out/qtpass $out/bin
'';
postInstall = ''
wrapProgram $out/bin/qtpass \
--suffix PATH : ${git}/bin \
--suffix PATH : ${gnupg}/bin \
--suffix PATH : ${pass}/bin
'';
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;
};
}