Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 rustPlatform,
3 lib,
4}:
5
6rustPlatform.buildRustPackage {
7 pname = "make-initrd-ng";
8 version = "0.1.0";
9
10 src = ./make-initrd-ng;
11 cargoLock.lockFile = ./make-initrd-ng/Cargo.lock;
12
13 passthru.updateScript = ./make-initrd-ng/update.sh;
14
15 meta = {
16 description = "Tool for copying binaries and their dependencies";
17 mainProgram = "make-initrd-ng";
18 maintainers = with lib.maintainers; [
19 das_j
20 elvishjerricco
21 k900
22 ];
23 license = lib.licenses.mit;
24 };
25}