nixpkgs/pkgs/applications/misc/qtpass/default.nix
Anne Jan Brouwer 6998586b8f QtPass 1.0.1 to 1.0.3
I'm guessing the sha256 wasn't correct for 1.0.1 or I'm doing something wrong here myself . .
2015-10-26 16:56:04 +01:00

36 lines
964 B
Nix

{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qt5 }:
stdenv.mkDerivation rec {
name = "qtpass-${version}";
version = "1.0.3";
src = fetchurl {
url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz";
sha256 = "a61a29ddd5a874fcdcb915dbc9d91e10787be22d794cc8ebb2ba3cff27030c67";
};
buildInputs = [ git gnupg makeWrapper pass qt5.base ];
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;
};
}