2022-05-01 14:56:58 +02:00
|
|
|
{ rustPlatform, lib, makeWrapper, patchelf, glibc, binutils }:
|
2021-11-21 01:47:28 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage {
|
|
|
|
pname = "make-initrd-ng";
|
|
|
|
version = "0.1.0";
|
|
|
|
|
|
|
|
src = ./make-initrd-ng;
|
|
|
|
cargoLock.lockFile = ./make-initrd-ng/Cargo.lock;
|
2022-07-31 16:15:38 +02:00
|
|
|
|
|
|
|
passthru.updateScript = ./make-initrd-ng/update.sh;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Tool for copying binaries and their dependencies";
|
|
|
|
maintainers = with lib.maintainers; [ das_j elvishjerricco k900 lheckemann ];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
2021-11-21 01:47:28 +01:00
|
|
|
}
|