mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
9a624d10e3
Since theey is not active from at least six years. All the packages on this commit became orphans. --------------------------------------------------------------------------- There are files not covered by this commit, because they will be adopted soon. Namely: - pkgs/by-name/zs/zsync/package.nix - pkgs/games/bsdgames/default.nix - pkgs/misc/ghostscript/default.nix - pkgs/os-specific/linux/kernel/perf/default.nix - pkgs/tools/system/logrotate/default.nix
25 lines
632 B
Nix
25 lines
632 B
Nix
{ buildGoModule, lib, fetchurl }:
|
|
|
|
buildGoModule rec {
|
|
pname = "filegive";
|
|
version = "unstable-2022-05-29";
|
|
rev = "5b28e7087a";
|
|
|
|
src = fetchurl {
|
|
url = "https://viric.name/cgi-bin/filegive/tarball/${rev}/filegive-${rev}.tar.gz";
|
|
hash = "sha256-A69oys59GEysZvQLaYsfoX/X2ENMMH2BGfJqXohQjpc=";
|
|
};
|
|
|
|
vendorHash = "sha256-l7FRl58NWGBynMlGu1SCxeVBEzTdxREvUWzmJDiliZM=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://viric.name/cgi-bin/filegive";
|
|
description = "Easy p2p file sending program";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = [ ];
|
|
mainProgram = "filegive";
|
|
};
|
|
}
|