pwsafe: 1.07 -> 1.08.1 (#61766)
now ships 'pwsafe-cli' in addition to wx GUI
This commit is contained in:
parent
dac3c6c426
commit
54d14bb4cf
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue