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

67 lines
2.1 KiB
Nix
Raw Normal View History

2021-03-09 20:33:10 +01:00
{ lib, stdenv, fetchurl, appimageTools, undmg, libsecret, libxshmfence }:
2020-05-25 17:44:29 +02:00
let
pname = "keeweb";
2021-05-16 14:05:57 +02:00
version = "1.18.6";
2020-05-25 17:44:29 +02:00
name = "${pname}-${version}";
2021-05-16 14:05:57 +02:00
srcs = {
x86_64-linux = fetchurl {
url = "https://github.com/keeweb/keeweb/releases/download/v${version}/KeeWeb-${version}.linux.AppImage";
sha256 = "sha256-hxXs8Dfh5YQy1zaFb20KDWNl8eqFjuN5QY7tsO6+E/U=";
};
x86_64-darwin = fetchurl {
url = "https://github.com/keeweb/keeweb/releases/download/v${version}/KeeWeb-${version}.mac.x64.dmg";
sha256 = "sha256-8+7NzaHVcLinKb57SAcJmF2Foy9RfxFhcTxzvL0JSJQ=";
};
aarch64-darwin = fetchurl {
url = "https://github.com/keeweb/keeweb/releases/download/v${version}/KeeWeb-${version}.mac.arm64.dmg";
sha256 = "sha256-1BNY6kRS0F+AUI+80ZGFi/ek28NMP1uexo1UORz5D6g=";
};
2020-05-25 17:44:29 +02:00
};
2021-05-16 14:05:57 +02:00
src = srcs.${stdenv.hostPlatform.system};
2020-05-25 17:44:29 +02:00
appimageContents = appimageTools.extract {
inherit name src;
};
meta = with lib; {
2020-05-25 17:44:29 +02:00
description = "Free cross-platform password manager compatible with KeePass";
homepage = "https://keeweb.info/";
2021-03-09 20:33:10 +01:00
changelog = "https://github.com/keeweb/keeweb/blob/v${version}/release-notes.md";
2020-05-25 17:44:29 +02:00
license = licenses.mit;
maintainers = with maintainers; [ sikmir ];
2021-05-16 14:05:57 +02:00
platforms = builtins.attrNames srcs;
2020-05-25 17:44:29 +02:00
};
linux = appimageTools.wrapType2 rec {
inherit name src meta;
2021-03-09 20:33:10 +01:00
extraPkgs = pkgs: with pkgs; [ libsecret libxshmfence ];
2020-05-25 17:44:29 +02:00
extraInstallCommands = ''
mv $out/bin/{${name},${pname}}
install -Dm644 ${appimageContents}/keeweb.desktop -t $out/share/applications
install -Dm644 ${appimageContents}/keeweb.png -t $out/share/icons/hicolor/256x256/apps
install -Dm644 ${appimageContents}/usr/share/mime/keeweb.xml -t $out/share/mime
substituteInPlace $out/share/applications/keeweb.desktop \
--replace 'Exec=AppRun' 'Exec=${pname}'
'';
};
darwin = stdenv.mkDerivation {
inherit pname version src meta;
nativeBuildInputs = [ undmg ];
2021-03-09 20:33:10 +01:00
sourceRoot = ".";
2020-05-25 17:44:29 +02:00
installPhase = ''
2021-03-09 20:33:10 +01:00
mkdir -p $out/Applications
cp -r *.app $out/Applications
2020-05-25 17:44:29 +02:00
'';
};
in
if stdenv.isDarwin
then darwin
else linux