linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / pixiecore / default.nix
blobc8c5ca118dd435e3bc663e0ce99b9e3565f3d02b
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "pixiecore";
5   version = "2020-03-25";
6   rev = "68743c67a60c18c06cd21fd75143e3e069ca3cfc";
8   src = fetchFromGitHub {
9     owner = "danderson";
10     repo = "netboot";
11     inherit rev;
12     sha256 = "14dslmx3gk08h9gqfjw5y27x7d2c6r8ir7mjd7l9ybysagpzr02a";
13   };
15   vendorSha256 = "08n3m6fkwh8jmmzky3ygij4gxlcqidqk5ywi8ki8bkyzzs2lqaw7";
17   doCheck = false;
19   subPackages = [ "cmd/pixiecore" ];
21   meta = {
22     description = "A tool to manage network booting of machines";
23     homepage = "https://github.com/danderson/netboot/tree/master/pixiecore";
24     license =  lib.licenses.asl20;
25     maintainers = with lib.maintainers; [ bbigras danderson ];
26     platforms = lib.platforms.unix;
27   };