Unverified Commit 8323bb6a authored by Jonas Heinrich's avatar Jonas Heinrich Committed by GitHub
Browse files

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

parents a64fd7d1 17018c8a
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -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" ];
  };
}