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

42 lines
1.2 KiB
Nix
Raw Normal View History

2017-05-17 19:26:11 +00:00
{ stdenv, fetchFromGitHub, git, gnupg, pass, qtbase, qtsvg, qttools, qmake, makeWrapper }:
2015-06-25 13:37:15 +00:00
stdenv.mkDerivation rec {
name = "qtpass-${version}";
2018-01-05 01:45:50 +00:00
version = "1.2.1";
2015-06-25 13:37:15 +00:00
2016-09-28 04:32:15 +00:00
src = fetchFromGitHub {
owner = "IJHack";
repo = "QtPass";
2016-09-28 04:32:15 +00:00
rev = "v${version}";
2018-01-05 01:45:50 +00:00
sha256 = "0pp38b3fifkfwqcb6vi194ccgb8j3zc8j8jq8ww5ib0wvhldzsg8";
2015-06-25 13:37:15 +00:00
};
2018-01-05 08:11:12 +00:00
patches = [ ./hidpi.patch ];
buildInputs = [ git gnupg pass qtbase qtsvg qttools ];
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ makeWrapper qmake ];
2015-06-25 13:37:15 +00:00
2018-01-05 01:45:50 +00:00
postPatch = ''
substituteInPlace qtpass.pro --replace "SUBDIRS += src tests main" "SUBDIRS += src main"
substituteInPlace qtpass.pro --replace "main.depends = tests" "main.depends = src"
2015-06-25 13:37:15 +00:00
'';
postInstall = ''
2018-01-05 01:45:50 +00:00
install -D qtpass.desktop $out/share/applications/qtpass.desktop
install -D artwork/icon.svg $out/share/icons/hicolor/scalable/apps/qtpass-icon.svg
2017-05-17 19:26:11 +00:00
wrapProgram $out/bin/qtpass \
--suffix PATH : ${git}/bin \
--suffix PATH : ${gnupg}/bin \
--suffix PATH : ${pass}/bin
2015-06-25 13:37:15 +00:00
'';
meta = with stdenv.lib; {
description = "A multi-platform GUI for pass, the standard unix password manager";
homepage = https://qtpass.org;
2015-06-25 13:37:15 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.hrdinka ];
platforms = platforms.all;
};
}