108 lines
2.1 KiB
Nix
108 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.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AChep";
|
|
repo = "keyguard-app";
|
|
rev = "81a8486ca31c86630c84c78285c49d16d7491328";
|
|
hash = "sha256-e0Ea2QSAMQqZRVPy5/5pblHfeG+L6oHEXHV5mepE5Z8=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|