Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
950 B
Nix
40 lines
950 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gpart";
|
|
version = "0.3";
|
|
|
|
# GitHub repository 'collating patches for gpart from all distributions':
|
|
src = fetchFromGitHub {
|
|
sha256 = "1lsd9k876p944k9s6sxqk5yh9yr7m42nbw9vlsllin7pd4djl4ya";
|
|
rev = version;
|
|
repo = "gpart";
|
|
owner = "baruch";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Guess PC-type hard disk partitions";
|
|
longDescription = ''
|
|
Gpart is a tool which tries to guess the primary partition table of a
|
|
PC-type hard disk in case the primary partition table in sector 0 is
|
|
damaged, incorrect or deleted. The guessed table can be written to a file
|
|
or device.
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
mainProgram = "gpart";
|
|
};
|
|
}
|