Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at domenkozar-patch-1 28 lines 756 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "pixiecore"; 5 version = "2020-03-25"; 6 rev = "68743c67a60c18c06cd21fd75143e3e069ca3cfc"; 7 8 src = fetchFromGitHub { 9 owner = "danderson"; 10 repo = "netboot"; 11 inherit rev; 12 sha256 = "14dslmx3gk08h9gqfjw5y27x7d2c6r8ir7mjd7l9ybysagpzr02a"; 13 }; 14 15 vendorSha256 = "08n3m6fkwh8jmmzky3ygij4gxlcqidqk5ywi8ki8bkyzzs2lqaw7"; 16 17 doCheck = false; 18 19 subPackages = [ "cmd/pixiecore" ]; 20 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 }; 28}