keeweb: 1.16.7 → 1.17.0

This commit is contained in:
Nikolay Korotkiy 2021-03-09 22:33:10 +03:00
parent 100537f2e1
commit c9cabb048f
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -1,10 +1,10 @@
{ lib, stdenv, fetchurl, appimageTools, undmg, libsecret }: { lib, stdenv, fetchurl, appimageTools, undmg, libsecret, libxshmfence }:
let let
inherit (stdenv.hostPlatform) system; inherit (stdenv.hostPlatform) system;
throwSystem = throw "Unsupported system: ${system}"; throwSystem = throw "Unsupported system: ${system}";
pname = "keeweb"; pname = "keeweb";
version = "1.16.7"; version = "1.17.0";
name = "${pname}-${version}"; name = "${pname}-${version}";
suffix = { suffix = {
@ -16,9 +16,9 @@ let
src = fetchurl { src = fetchurl {
url = "https://github.com/keeweb/keeweb/releases/download/v${version}/KeeWeb-${version}.${suffix}"; url = "https://github.com/keeweb/keeweb/releases/download/v${version}/KeeWeb-${version}.${suffix}";
sha256 = { sha256 = {
x86_64-linux = "0a4yh2jh9sph17mqqi62gm5jc4yffkysq6yiggyzz5f8xw4p315j"; x86_64-linux = "1c7zvwnd46d3lrlcdigv341flz44jl6mnvr6zqny5mfz221ynbj7";
x86_64-darwin = "0ix1apddqvz561pw5lx47x091wlfj27zh8k8v7kn5xvm09hswfkr"; x86_64-darwin = "1n4haxychm5jjhjnpncavjh0wr4dagqi78qfsx5gwlv86hzryzwy";
aarch64-darwin = "0p0kql79kcb3w947g1ljhbj15b8aqrwcrbi0cknb12f6iq47lkz7"; aarch64-darwin = "1j7z63cbfms02f2lhl949wy3lc376jw8kqmjfn9j949s0l5fanpb";
}.${system} or throwSystem; }.${system} or throwSystem;
}; };
@ -29,6 +29,7 @@ let
meta = with lib; { meta = with lib; {
description = "Free cross-platform password manager compatible with KeePass"; description = "Free cross-platform password manager compatible with KeePass";
homepage = "https://keeweb.info/"; homepage = "https://keeweb.info/";
changelog = "https://github.com/keeweb/keeweb/blob/v${version}/release-notes.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ sikmir ]; maintainers = with maintainers; [ sikmir ];
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
@ -37,7 +38,7 @@ let
linux = appimageTools.wrapType2 rec { linux = appimageTools.wrapType2 rec {
inherit name src meta; inherit name src meta;
extraPkgs = pkgs: with pkgs; [ libsecret ]; extraPkgs = pkgs: with pkgs; [ libsecret libxshmfence ];
extraInstallCommands = '' extraInstallCommands = ''
mv $out/bin/{${name},${pname}} mv $out/bin/{${name},${pname}}
@ -54,11 +55,11 @@ let
nativeBuildInputs = [ undmg ]; nativeBuildInputs = [ undmg ];
sourceRoot = "KeeWeb.app"; sourceRoot = ".";
installPhase = '' installPhase = ''
mkdir -p $out/Applications/KeeWeb.app mkdir -p $out/Applications
cp -R . $out/Applications/KeeWeb.app cp -r *.app $out/Applications
''; '';
}; };
in in