2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2015-11-17 23:09:04 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gpart";
|
2016-01-24 20:31:44 +01:00
|
|
|
version = "0.3";
|
2015-11-17 23:09:04 +01:00
|
|
|
|
|
|
|
# GitHub repository 'collating patches for gpart from all distributions':
|
|
|
|
src = fetchFromGitHub {
|
2015-11-25 02:41:03 +01:00
|
|
|
sha256 = "1lsd9k876p944k9s6sxqk5yh9yr7m42nbw9vlsllin7pd4djl4ya";
|
|
|
|
rev = version;
|
2015-11-17 23:09:04 +01:00
|
|
|
repo = "gpart";
|
|
|
|
owner = "baruch";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-11-17 23:09:04 +01:00
|
|
|
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;
|
2016-08-06 17:28:47 +02:00
|
|
|
platforms = platforms.linux;
|
2015-11-17 23:09:04 +01:00
|
|
|
};
|
|
|
|
}
|