core/pkgs/build-support/kernel/make-initrd-ng-tool.nix

31 lines
559 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
rustPlatform,
lib,
makeWrapper,
patchelf,
glibc,
binutils,
}:
2024-05-02 00:46:19 +00:00
rustPlatform.buildRustPackage {
pname = "make-initrd-ng";
version = "0.1.0";
src = ./make-initrd-ng;
cargoLock.lockFile = ./make-initrd-ng/Cargo.lock;
passthru.updateScript = ./make-initrd-ng/update.sh;
meta = {
description = "Tool for copying binaries and their dependencies";
mainProgram = "make-initrd-ng";
2024-06-30 08:16:52 +00:00
maintainers = with lib.maintainers; [
das_j
elvishjerricco
k900
lheckemann
];
2024-05-02 00:46:19 +00:00
license = lib.licenses.mit;
};
}