plik,plikd: 1.3.6 -> 1.3.7

This commit is contained in:
Aaron Jheng 2023-07-12 02:52:50 +00:00
parent d8b2a92df4
commit cb6c8e3526
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
2 changed files with 7 additions and 7 deletions

View File

@ -1,13 +1,13 @@
{ lib, fetchurl, makeWrapper, runCommand, callPackage }:
let
version = "1.3.6";
version = "1.3.7";
programs = callPackage ./programs.nix { };
webapp = fetchurl {
url = "https://github.com/root-gg/plik/releases/download/${version}/plik-${version}-linux-amd64.tar.gz";
sha256 = "sha256-UGzevhZDfQBoFgPZQIs5Ftgz1cUHGfY/IRSEWQHFVSQ=";
hash = "sha256-Uj3I/ohgMr/Ud5xAZiBjsIW8bSdUeXXv9NYKLu8Aym8=";
};
in

View File

@ -1,16 +1,16 @@
{ lib, buildGoModule, fetchFromGitHub, fetchurl, makeWrapper, runCommand }:
let
version = "1.3.6";
version = "1.3.7";
src = fetchFromGitHub {
owner = "root-gg";
repo = "plik";
rev = version;
sha256 = "sha256-Xfk7+60iB5/qJh/6j6AxW0aKXuzdINRfILXRzOFejW4=";
hash = "sha256-Agkwo1oat1LDP6EJBVOoq+d+p80BGOLS4K7WTue5Nbg=";
};
vendorSha256 = null;
vendorHash = null;
meta = with lib; {
homepage = "https://plik.root.gg/";
@ -29,7 +29,7 @@ in
plik = buildGoModule {
pname = "plik";
inherit version meta src vendorSha256 postPatch;
inherit version meta src vendorHash postPatch;
subPackages = [ "client" ];
postInstall = ''
@ -39,7 +39,7 @@ in
plikd-unwrapped = buildGoModule {
pname = "plikd-unwrapped";
inherit version src vendorSha256 postPatch;
inherit version src vendorHash postPatch;
subPackages = [ "server" ];
postFixup = ''