tvl-depot/third_party/loxy/default.nix
Vincent Ambo 4d113ae9f9 chore(3p/loxy): Add link to source repository
This is not obvious otherwise.

Change-Id: Ic07993a58e545345dae4529d281d6fdae35c19aa
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1761
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
2020-08-17 09:54:18 +00:00

32 lines
694 B
Nix

{ lib, pkgs, depot, ... }:
let
inherit (depot.nix) fetchGoModule;
in
pkgs.buildGoModule rec {
pname = "loxy";
version = "0.1.1";
src = fetchGoModule {
path = "go.anomalous.eu/loxy";
inherit version;
sha256 = "0k1i7wa0v9h7r4kb7pjd3pzvcjrnsp58cfh51z73s74il7462sr5";
};
vendorSha256 = "0243wq6crzy86vc5cm1nijddsrcllr3c66xkd6q8x16jrvnv09jx";
postInstall = ''
install -D -m 0644 -t $out/share/man/man8 loxy.8
'';
meta = with lib; {
description = "a logging IRC proxy";
homepage = "https://anomalous.eu/projects/loxy";
vcs = "https://src.anomalous.eu/loxy";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ V edef ];
};
}