2009-08-12 00:23:30 +02:00
|
|
|
{ stdenv, fetchurl, devicemapper, libuuid, gettext, readline }:
|
2009-07-26 23:03:52 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "parted-1.9.0";
|
2005-07-31 22:11:56 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-07-26 23:03:52 +02:00
|
|
|
url = "mirror://gnu/parted/${name}.tar.gz";
|
|
|
|
sha256 = "02amqpzl8lgk247cjsbaz1nsiz9i1pbj0adx0z109h94p90i48sk";
|
2005-07-31 22:11:56 +02:00
|
|
|
};
|
2007-05-14 00:43:15 +02:00
|
|
|
|
2009-08-12 00:23:30 +02:00
|
|
|
buildInputs = [ devicemapper libuuid gettext readline ];
|
2009-07-26 23:03:52 +02:00
|
|
|
|
|
|
|
# XXX: For some reason our libreadline.so doesn't have libncurses as
|
|
|
|
# NEEDED and `configure' links with `-Wl,--as-needed' so when
|
|
|
|
# `AC_CHECK_LIB' tries to link with `-lreadline -lncurses' the latter is
|
|
|
|
# removed, leaving `libreadline' with unresolved references.
|
|
|
|
#
|
|
|
|
# Remove the `preConfigure' hack below when Readline is fixed.
|
|
|
|
preConfigure = ''export gl_cv_ignore_unused_libraries=""'';
|
|
|
|
configureFlags = "--with-readline";
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
patches = [ ./t7000-scripting.patch ];
|
2009-02-15 00:44:08 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-07-26 23:03:52 +02:00
|
|
|
description = "GNU Parted, a tool to create, destroy, resize, check, and copy partitions";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU Parted is an industrial-strength package for creating, destroying,
|
|
|
|
resizing, checking and copying partitions, and the file systems on
|
|
|
|
them. This is useful for creating space for new operating systems,
|
|
|
|
reorganising disk usage, copying data on hard disks and disk imaging.
|
|
|
|
|
|
|
|
It contains a library, libparted, and a command-line frontend, parted,
|
|
|
|
which also serves as a sample implementation and script backend.
|
|
|
|
'';
|
|
|
|
|
2009-02-15 00:44:08 +01:00
|
|
|
homepage = http://www.gnu.org/software/parted/;
|
2009-07-26 23:03:52 +02:00
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
maintainers = [
|
|
|
|
# Add your name here!
|
|
|
|
stdenv.lib.maintainers.ludo
|
|
|
|
];
|
2009-02-15 00:44:08 +01:00
|
|
|
};
|
2005-07-31 22:11:56 +02:00
|
|
|
}
|