My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/networking/waitron/default.nix

29 lines
726 B

{ lib, buildGoPackage, fetchFromGitHub, fetchhg, fetchbzr, fetchsvn }:
buildGoPackage rec {
pname = "waitron";
version = "unstable-2020-01-24";
goPackagePath = "github.com/ns1/waitron";
src = fetchFromGitHub {
owner = "ns1";
repo = "waitron";
rev = "c96833619cbb0cf2bc71b1d7b534101e139cc6e6";
sha256 = "sha256-ZkGhEOckIOYGb6Yjr4I4e9cjAHDfksRwHW+zgOMZ/FE=";
};
patches = [
./staticfiles-directory.patch
];
goDeps = ./deps.nix;
meta = {
description = "A tool to manage network booting of machines";
homepage = "https://github.com/ns1/waitron";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guibert ];
platforms = lib.platforms.linux;
};
}