gnufdisk: update the alpha-version, no hydra now

It builds now.
This commit is contained in:
Vladimír Čunát 2013-01-31 21:10:37 +01:00
parent ebfc26b43d
commit 5bd9baa141
2 changed files with 11 additions and 9 deletions

View file

@ -1,19 +1,19 @@
{ fetchurl, stdenv, parted, libuuid, gettext }:
{ fetchurl, stdenv, parted, libuuid, gettext, guile }:
stdenv.mkDerivation rec {
name = "fdisk-1.3.0a";
name = "gnufdisk-2.0.0a"; # .0a1 seems broken, see http://lists.gnu.org/archive/html/bug-fdisk/2012-09/msg00000.html
src = fetchurl {
url = "mirror://gnu/fdisk/${name}.tar.bz2";
sha256 = "1g2zvl560f7p1hd4q50d1msy6qp7949mdkagfy8ki8cayp8fp267";
url = "mirror://gnu/fdisk/${name}.tar.gz";
sha256 = "04nd7civ561x2lwcmxhsqbprml3178jfc58fy1v7hzqg5k4nbhy3";
};
buildInputs = [ parted libuuid gettext ];
buildInputs = [ parted libuuid gettext guile ];
doCheck = true;
meta = {
description = "GNU fdisk, a command-line disk partitioning tool";
description = "A command-line disk partitioning tool";
longDescription = ''
GNU fdisk provides alternatives to util-linux fdisk and util-linux
@ -25,6 +25,6 @@ stdenv.mkDerivation rec {
homepage = http://www.gnu.org/software/fdisk/;
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.linux;
#platforms = stdenv.lib.platforms.linux; # was failing for long without anyone complaining
};
}

View file

@ -727,8 +727,6 @@ let
fcron = callPackage ../tools/system/fcron { };
fdisk = callPackage ../tools/system/fdisk { };
fdm = callPackage ../tools/networking/fdm {};
figlet = callPackage ../tools/misc/figlet { };
@ -813,6 +811,10 @@ let
inherit (xorg) libXpm;
};
gnufdisk = callPackage ../tools/system/fdisk {
guile = guile_1_8;
};
gnugrep =
# Use libiconv only on non-GNU platforms (we can't test with
# `stdenv ? glibc' at this point.)