pwsafe: 1.07 -> 1.08.1 (#61766)

now ships 'pwsafe-cli' in addition to wx GUI
This commit is contained in:
Renaud 2019-05-21 14:14:09 +02:00 committed by GitHub
parent dac3c6c426
commit 54d14bb4cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 9 deletions

View File

@ -6,17 +6,17 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "pwsafe"; pname = "pwsafe";
version = "1.07"; version = "1.08.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "${pname}"; owner = pname;
repo = "${pname}"; repo = pname;
rev = "${version}BETA"; rev = "${version}BETA";
sha256 = "0syxmliybgvm9j6d426l7j12ryrl42azy80m66jc56fv9nkqwaya"; sha256 = "0x89pn056h8b4yvxbd6l3qwrghslxc7vlxnblmcmsx7xx4i041ng";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cmake gettext perl pkgconfig zip cmake gettext perl pkgconfig zip
]; ];
buildInputs = [ buildInputs = [
libXext libXi libXt libXtst wxGTK31 libXext libXi libXt libXtst wxGTK31
@ -49,11 +49,10 @@ stdenv.mkDerivation rec {
done done
''; '';
installFlags = [ "PREFIX=$(out)" ]; installFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A password database utility"; description = "A password database utility";
longDescription = '' longDescription = ''
Password Safe is a password database utility. Like many other Password Safe is a password database utility. Like many other
such products, commercial and otherwise, it stores your such products, commercial and otherwise, it stores your
@ -61,8 +60,7 @@ stdenv.mkDerivation rec {
one password (the "safe combination"), instead of all the one password (the "safe combination"), instead of all the
username/password combinations that you use. username/password combinations that you use.
''; '';
homepage = "https://pwsafe.org/";
homepage = https://pwsafe.org/;
maintainers = with maintainers; [ c0bw3b pjones ]; maintainers = with maintainers; [ c0bw3b pjones ];
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.artistic2; license = licenses.artistic2;