oneshot: init at 1.1.0
This commit is contained in:
parent
f70a54893e
commit
68a15c260a
26
pkgs/tools/networking/oneshot/default.nix
Normal file
26
pkgs/tools/networking/oneshot/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, fetchFromGitHub, buildGoModule }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "oneshot";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "raphaelreyna";
|
||||||
|
repo = "oneshot";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1gcxwamchznkzg3m0gfig7733z2w035lxxj6h18gc6zzcnf6p57w";
|
||||||
|
};
|
||||||
|
|
||||||
|
goPackagePath = "github.com/raphaelreyna/oneshot";
|
||||||
|
vendorSha256 = "0v53dsj0w959pmvk6v1i7rwlfd2y0vrghxlwkgidw0sf775qpgvy";
|
||||||
|
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A first-come-first-serve single-fire HTTP server";
|
||||||
|
homepage = "https://github.com/raphaelreyna/oneshot";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ edibopp ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -2157,6 +2157,8 @@ in
|
|||||||
|
|
||||||
onboard = callPackage ../applications/misc/onboard { };
|
onboard = callPackage ../applications/misc/onboard { };
|
||||||
|
|
||||||
|
oneshot = callPackage ../tools/networking/oneshot { };
|
||||||
|
|
||||||
onnxruntime = callPackage ../development/libraries/onnxruntime { };
|
onnxruntime = callPackage ../development/libraries/onnxruntime { };
|
||||||
|
|
||||||
xkbd = callPackage ../applications/misc/xkbd { };
|
xkbd = callPackage ../applications/misc/xkbd { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user