uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
28
pkgs/tools/networking/pixiecore/default.nix
Normal file
28
pkgs/tools/networking/pixiecore/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pixiecore";
|
||||
version = "2020-03-25";
|
||||
rev = "68743c67a60c18c06cd21fd75143e3e069ca3cfc";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "danderson";
|
||||
repo = "netboot";
|
||||
inherit rev;
|
||||
sha256 = "14dslmx3gk08h9gqfjw5y27x7d2c6r8ir7mjd7l9ybysagpzr02a";
|
||||
};
|
||||
|
||||
vendorSha256 = "08n3m6fkwh8jmmzky3ygij4gxlcqidqk5ywi8ki8bkyzzs2lqaw7";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
subPackages = [ "cmd/pixiecore" ];
|
||||
|
||||
meta = {
|
||||
description = "A tool to manage network booting of machines";
|
||||
homepage = "https://github.com/danderson/netboot/tree/master/pixiecore";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ bbigras danderson ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue