depot/third_party/nixpkgs/pkgs/by-name/ke/keyguard/package.nix
Default email ae2dc6aea6 Project import generated by Copybara.
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
2024-10-11 07:15:48 +02:00

107 lines
2.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
gradle,
binutils,
fakeroot,
jdk17,
fontconfig,
autoPatchelfHook,
libXinerama,
libXrandr,
file,
gtk3,
glib,
cups,
lcms2,
alsa-lib,
makeDesktopItem,
copyDesktopItems,
}:
let
gradleBuildTask = ":desktopApp:createDistributable";
gradleUpdateTask = gradleBuildTask;
desktopItems = [
(makeDesktopItem {
name = "Keyguard";
exec = "Keyguard";
icon = "Keyguard";
comment = "Keyguard";
desktopName = "Keyguard";
})
];
in
stdenv.mkDerivation (finalAttrs: {
pname = "keyguard";
version = "1.6.2";
src = fetchFromGitHub {
owner = "AChep";
repo = "keyguard-app";
rev = "eb36b853a7ac67a0f72d5684e6751d41969b07dd";
hash = "sha256-tMNc8OlYsiYmVtac2jngvrFZjgI7eNFVIxXUfIJUdK4=";
};
inherit gradleBuildTask gradleUpdateTask desktopItems;
nativeBuildInputs = [
gradle
binutils
fakeroot
jdk17
autoPatchelfHook
copyDesktopItems
];
mitmCache = gradle.fetchDeps {
inherit (finalAttrs) pname;
data = ./deps.json;
silent = false;
useBwrap = false;
};
doCheck = false;
__darwinAllowLocalNetworking = true;
gradleFlags = [ "-Dorg.gradle.java.home=${jdk17}" ];
env.JAVA_HOME = jdk17;
buildInputs = [
fontconfig
libXinerama
libXrandr
file
gtk3
glib
cups
lcms2
alsa-lib
];
installPhase = ''
runHook preInstall
mkdir -p $out/
cp -a ./desktopApp/build/compose/binaries/main/app/*/* $out/
install -Dm0644 $out/lib/Keyguard.png $out/share/pixmaps/Keyguard.png
runHook postInstall
'';
meta = {
description = "Alternative client for the Bitwarden platform, created to provide the best user experience possible";
homepage = "https://github.com/AChep/keyguard-app";
mainProgram = "Keyguard";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ aucub ];
sourceProvenance = with lib.sourceTypes; [
fromSource
binaryBytecode
];
platforms = lib.platforms.darwin ++ [ "x86_64-linux" ];
broken = stdenv.hostPlatform.isDarwin;
};
})