enpass: 6.0.1.239 -> 6.5.1.723
This commit is contained in:
parent
77b7d8b4d6
commit
7dc0b8d9d6
2 changed files with 12 additions and 9 deletions
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"amd64": {
|
"amd64": {
|
||||||
"path": "pool/main/e/enpass/enpass_6.0.1.239_amd64.deb",
|
"path": "pool/main/e/enpass/enpass_6.5.1.723_amd64.deb",
|
||||||
"sha256": "408a2bb318564307607f13b52fec7667f425c01ac40cbe345ebfa191ab1479ba",
|
"sha256": "d9bb408fa2253ce44ab5396898f7db13291ce23ae58964f4a27ade38bd5067bf",
|
||||||
"version": "6.0.1.239"
|
"version": "6.5.1.723"
|
||||||
},
|
},
|
||||||
"i386": {
|
"i386": {
|
||||||
"path": "pool/main/e/enpass/enpass_5.6.9_i386.deb",
|
"path": "pool/main/e/enpass/enpass_5.6.9_i386.deb",
|
||||||
"sha256": "3f699ac3e2ecfd4afee1505d8d364d4f6b6b94c55ba989d0a80bd678ff66cb2c",
|
"sha256": "3f699ac3e2ecfd4afee1505d8d364d4f6b6b94c55ba989d0a80bd678ff66cb2c",
|
||||||
"version": "5.6.9"
|
"version": "5.6.9"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
, glib, libGLU, libGL, libpulseaudio, zlib, dbus, fontconfig, freetype
|
, glib, libGLU, libGL, libpulseaudio, zlib, dbus, fontconfig, freetype
|
||||||
, gtk3, pango
|
, gtk3, pango
|
||||||
, makeWrapper , python2Packages, lib
|
, makeWrapper , python2Packages, lib
|
||||||
, lsof, curl, libuuid, cups, mesa
|
, lsof, curl, libuuid, cups, mesa, lzma, libxkbcommon
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -38,6 +38,8 @@ let
|
||||||
curl
|
curl
|
||||||
libuuid
|
libuuid
|
||||||
cups
|
cups
|
||||||
|
lzma
|
||||||
|
libxkbcommon
|
||||||
]);
|
]);
|
||||||
package = stdenv.mkDerivation {
|
package = stdenv.mkDerivation {
|
||||||
|
|
||||||
|
@ -49,11 +51,12 @@ let
|
||||||
url = "${baseUrl}/${data.path}";
|
url = "${baseUrl}/${data.path}";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "a well known password manager";
|
description = "A well known password manager";
|
||||||
homepage = "https://www.enpass.io/";
|
homepage = "https://www.enpass.io/";
|
||||||
license = lib.licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = [ "x86_64-linux" "i686-linux"];
|
platforms = [ "x86_64-linux" "i686-linux"];
|
||||||
|
maintainers = with maintainers; [ guillaumekoenig ];
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [makeWrapper dpkg];
|
buildInputs = [makeWrapper dpkg];
|
||||||
|
|
Loading…
Reference in a new issue