Unverified Commit c13b9668 authored by misuzu's avatar misuzu Committed by GitHub
Browse files

peergos: 1.22.0 -> 1.24.0 (#510838)

parents 2c1b4e85 eb1864b0
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  stdenv,
  fetchFromGitHub,
  ant,
  jdk,
  jdk25,
  openjdk8-bootstrap,
  jre,
  stripJavaArchivesHook,
@@ -14,13 +14,13 @@
let
  tweetnacl = stdenv.mkDerivation {
    pname = "tweetnacl";
    version = "0-unstable-2020-02-12";
    version = "0-unstable-2025-11-06";

    src = fetchFromGitHub {
      owner = "ianopolous";
      repo = "tweetnacl-java";
      rev = "6d1bde81ea63051750cda40422b62e478b85d2b0";
      hash = "sha256-BDWzDpUBi4UuvxFwA9ton+RtHOzDcWql1ti+cdvhzks=";
      rev = "0cf99e1921b79eb91bc4c27cc15a27e325dbdb75";
      hash = "sha256-RyyC3/XhOhL7UxtPd2WODJgG6mPqkF/KDtvoa8PKWEM=";
    };

    postPatch = ''
@@ -41,18 +41,19 @@ let
in
stdenv.mkDerivation rec {
  pname = "peergos";
  version = "1.22.0";
  version = "1.24.0";

  src = fetchFromGitHub {
    owner = "Peergos";
    repo = "web-ui";
    rev = "v${version}";
    hash = "sha256-0/kLWX3IbVH5FnffIER/VK2PJpJXOyBECc1upvEcWHI=";
    hash = "sha256-qZUYtiqEoYs7gal164Qnum83xgRq/wPXz7cLiuqM278=";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [
    ant
    jdk
    jdk25
    stripJavaArchivesHook
    makeWrapper
  ];