go-camo: init at 2.4.0
This commit is contained in:
parent
78520c1fff
commit
4c8fe91fb0
2 changed files with 27 additions and 0 deletions
25
pkgs/servers/http/go-camo/default.nix
Normal file
25
pkgs/servers/http/go-camo/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "go-camo";
|
||||||
|
version = "2.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cactus";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1Wzy5EHFJAPnxusUBvNoJnXyVAx/LiiTgIQZE9r01Lw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "31B6LXCutIdPwxqMFTMUfxAaCuYW14py8Vu1EycBydE=";
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" "-X=main.ServerVersion=${version}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A camo server is a special type of image proxy that proxies non-secure images over SSL/TLS";
|
||||||
|
homepage = "https://github.com/cactus/go-camo";
|
||||||
|
changelog = "https://github.com/cactus/go-camo/releases/tag/v${version}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ viraptor ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -21745,6 +21745,8 @@ with pkgs;
|
||||||
|
|
||||||
nats-server = callPackage ../servers/nats-server { };
|
nats-server = callPackage ../servers/nats-server { };
|
||||||
|
|
||||||
|
go-camo = callPackage ../servers/http/go-camo { };
|
||||||
|
|
||||||
gofish = callPackage ../servers/gopher/gofish { };
|
gofish = callPackage ../servers/gopher/gofish { };
|
||||||
|
|
||||||
grafana = callPackage ../servers/monitoring/grafana { };
|
grafana = callPackage ../servers/monitoring/grafana { };
|
||||||
|
|
Loading…
Reference in a new issue