chirpstack-rest-api: init at 4.9.0 (#353916)
This commit is contained in:
commit
4284da6a65
34
pkgs/by-name/ch/chirpstack-rest-api/package.nix
Normal file
34
pkgs/by-name/ch/chirpstack-rest-api/package.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildGoModule,
|
||||||
|
fetchFromGitHub,
|
||||||
|
nix-update-script,
|
||||||
|
}:
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "chirpstack-rest-api";
|
||||||
|
version = "4.10.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "chirpstack";
|
||||||
|
repo = "chirpstack-rest-api";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-Rqxayn5vcCsvdztfElhRrdxxO3l5SgtckmWQMYey9MA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-7Qcd7AQjIdp5j7/i7wEZslMiOR5/rJ0HGbo8o7Q035U=";
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
];
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "gRPC API to REST proxy for Chirpstack";
|
||||||
|
homepage = "https://www.chirpstack.io/";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = [ lib.maintainers.stv0g ];
|
||||||
|
mainProgram = "chirpstack-rest-api";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user