2022-06-13 21:16:20 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
# sGdisk with Patches
|
|
|
|
|
|
|
|
GPT-FDisk patched to be able to move not only the primary, but also the backup partition table.
|
|
|
|
|
|
|
|
|
|
|
|
## Implementation
|
|
|
|
|
|
|
|
```nix
|
|
|
|
#*/# end of MarkDown, beginning of NixPkgs overlay:
|
|
|
|
dirname: inputs: final: prev: let
|
|
|
|
inherit (final) pkgs; inherit (inputs.self) lib;
|
|
|
|
in {
|
|
|
|
|
2022-12-27 15:37:27 +01:00
|
|
|
gptfdisk = prev.gptfdisk.overrideAttrs (old: let
|
2022-06-13 21:16:20 +02:00
|
|
|
pname = "gptfdisk";
|
2022-12-27 15:37:27 +01:00
|
|
|
in rec {
|
2022-06-13 21:16:20 +02:00
|
|
|
version = "1.0.9";
|
|
|
|
src = builtins.fetchurl {
|
|
|
|
url = "https://downloads.sourceforge.net/gptfdisk/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "1hjh5m77fmfq5m44yy61kchv7mbfgx026aw3jy5qxszsjckavzns";
|
|
|
|
};
|
2022-12-27 15:37:27 +01:00
|
|
|
/* patches = [ # (don't include »old.patches«, as the only one was upstreamed)
|
2022-06-13 21:16:20 +02:00
|
|
|
../patches/gptfdisk-move-secondary-table.patch
|
2022-12-27 15:37:27 +01:00
|
|
|
]; */
|
2022-06-13 21:16:20 +02:00
|
|
|
});
|
2022-06-28 05:00:48 +02:00
|
|
|
|
|
|
|
libblockdev = prev.libblockdev.override { inherit (prev) gptfdisk; };
|
|
|
|
|
2022-06-13 21:16:20 +02:00
|
|
|
}
|