1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pixiecore: init at 2020-03-25

Co-authored-by: raunovv <rauno@oyenetwork.com>
This commit is contained in:
Bruno Bigras 2020-03-25 12:05:01 -04:00
parent 2136d80fb3
commit 78fbe7dba6
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pixiecore";
version = "2020-03-25";
rev = "68743c67a60c18c06cd21fd75143e3e069ca3cfc";
src = fetchFromGitHub {
owner = "danderson";
repo = "netboot";
inherit rev;
sha256 = "14dslmx3gk08h9gqfjw5y27x7d2c6r8ir7mjd7l9ybysagpzr02a";
};
modSha256 = "1waqaglm6f9zy5296z309ppkck2vmydhk9gjnxrgzmhqld5lcq4f";
subPackages = [ "cmd/pixiecore" ];
meta = {
description = "A tool to manage network booting of machines";
homepage = "https://github.com/danderson/netboot/tree/master/pixiecore";
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ bbigras danderson ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -2150,6 +2150,8 @@ in
pueue = callPackage ../applications/misc/pueue { };
pixiecore = callPackage ../tools/networking/pixiecore {};
pyCA = python3Packages.callPackage ../applications/video/pyca {};
pyznap = python3Packages.callPackage ../tools/backup/pyznap {};