mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
I do not have the time or energy to handle all of this. Let alone my GitHub notifications. This PR is in good faith and does not refer to anything community-related. I will keep on doing nixpkgs work but the pile of shame (let's call it that) needs to be cleaned. Thanks to @mweinelt which whom I had a discussion and who made me aware of this issue.
25 lines
482 B
Nix
25 lines
482 B
Nix
{
|
|
rustPlatform,
|
|
lib,
|
|
}:
|
|
|
|
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";
|
|
maintainers = with lib.maintainers; [
|
|
elvishjerricco
|
|
k900
|
|
];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|