Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of qtpass override the whole configurePhase, so this hook isn't run at all. This fixes the build of qtpass and it now successfully compiles on my machine. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{ stdenv, fetchurl, git, gnupg, makeQtWrapper, pass, qtbase, qtsvg, qttools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qtpass-${version}";
|
|
version = "1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz";
|
|
sha256 = "60b458062f54184057e55dbd9c93958a8bf845244ffd70b9cb31bf58697f0dc6";
|
|
};
|
|
|
|
buildInputs = [ git gnupg makeQtWrapper pass qtbase qtsvg qttools ];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
qmake CONFIG+=release PREFIX=$out DESTDIR=$out
|
|
runHook postConfigure
|
|
'';
|
|
|
|
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
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|