20 lines
No EOL
422 B
Nix
20 lines
No EOL
422 B
Nix
{ lib, pkgs }:
|
|
|
|
pkgs.buildGoModule rec {
|
|
pname = "forgejo-comment";
|
|
version = "1.0.0";
|
|
|
|
src = ./src;
|
|
|
|
# Vendor dependencies for reproducibility
|
|
vendorHash = null;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
meta = {
|
|
homepage = "https://code.252.no/tommy/containers";
|
|
description = "Comment on Forgejo issues via the Forgejo API";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ "tommy-skaug" ];
|
|
};
|
|
} |