3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/waitron/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
726 B
Nix
Raw Normal View History

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