qtpass: init at 0.8.4
This commit is contained in:
parent
d405d036c5
commit
bc975c36d1
35
pkgs/applications/misc/qtpass/default.nix
Normal file
35
pkgs/applications/misc/qtpass/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qt5 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "qtpass-${version}";
|
||||||
|
version = "0.8.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "14avh04q559p64ska1w814pbwv0742aaqln036pw99fjxav685g0";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -12266,6 +12266,8 @@ let
|
|||||||
|
|
||||||
qtox = callPackage ../applications/networking/instant-messengers/qtox { };
|
qtox = callPackage ../applications/networking/instant-messengers/qtox { };
|
||||||
|
|
||||||
|
qtpass = callPackage ../applications/misc/qtpass { };
|
||||||
|
|
||||||
qtpfsgui = callPackage ../applications/graphics/qtpfsgui { };
|
qtpfsgui = callPackage ../applications/graphics/qtpfsgui { };
|
||||||
|
|
||||||
qtractor = callPackage ../applications/audio/qtractor { };
|
qtractor = callPackage ../applications/audio/qtractor { };
|
||||||
|
Loading…
Reference in New Issue
Block a user