nixpkgs/pkgs/servers/plik/programs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, makeWrapper, runCommand }:
let
2023-10-04 07:03:49 +00:00
version = "1.3.8";
src = fetchFromGitHub {
owner = "root-gg";
repo = "plik";
rev = version;
2023-10-04 07:03:49 +00:00
hash = "sha256-WCtfkzlZnyzZDwNDBrW06bUbLYTL2C704Y7aXbiVi5c=";
};
2023-07-12 02:52:50 +00:00
vendorHash = null;
meta = with lib; {
homepage = "https://plik.root.gg/";
description = "Scalable & friendly temporary file upload system";
maintainers = with maintainers; [ freezeboy ];
license = licenses.mit;
2023-11-27 01:17:53 +00:00
mainProgram = "plik";
};
2022-06-08 12:02:04 +00:00
postPatch = ''
substituteInPlace server/common/version.go \
--replace '"0.0.0"' '"${version}"'
'';
2022-01-21 23:46:38 +00:00
in
{
plik = buildGoModule {
pname = "plik";
2023-07-12 02:52:50 +00:00
inherit version meta src vendorHash postPatch;
subPackages = [ "client" ];
postInstall = ''
mv $out/bin/client $out/bin/plik
'';
};
plikd-unwrapped = buildGoModule {
pname = "plikd-unwrapped";
2023-07-12 02:52:50 +00:00
inherit version src vendorHash postPatch;
subPackages = [ "server" ];
postFixup = ''
mv $out/bin/server $out/bin/plikd
'';
};
}