briar-desktop: 0.6.0 -> 0.6.3 (#395152)

This commit is contained in:
Jonas Heinrich
2025-04-01 16:59:00 +02:00
committed by GitHub

View File

@@ -9,6 +9,7 @@
p7zip,
bash,
writeScript,
libGL,
}:
let
@@ -20,11 +21,11 @@ let
in
stdenv.mkDerivation rec {
pname = "briar-desktop";
version = "0.6.0-beta";
version = "0.6.3-beta";
src = fetchurl {
url = "https://desktop.briarproject.org/jars/linux/${version}/briar-desktop-linux-${version}.jar";
hash = "sha256-ITlg2THQwP91nVxHhLfXPBtC4e3EU9V7D/15XqWC7FE=";
hash = "sha256-8JX4cgRJZDCBlu5iVL7t5nZSZn8XTk3DU3rasViQgtg=";
};
dontUnpack = true;
@@ -42,6 +43,7 @@ stdenv.mkDerivation rec {
--prefix LD_LIBRARY_PATH : "${
lib.makeLibraryPath [
libnotify
libGL
]
}"
'';
@@ -57,11 +59,14 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
description = "Decentalized and secure messnger";
description = "Decentralized and secure messenger";
mainProgram = "briar-desktop";
homepage = "https://code.briarproject.org/briar/briar-desktop";
license = licenses.gpl3;
maintainers = with maintainers; [ onny ];
maintainers = with maintainers; [
onny
supinie
];
platforms = [ "x86_64-linux" ];
};
}