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 { 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 { src = fetchurl {
url = "mirror://gnu/fdisk/${name}.tar.bz2"; url = "mirror://gnu/fdisk/${name}.tar.gz";
sha256 = "1g2zvl560f7p1hd4q50d1msy6qp7949mdkagfy8ki8cayp8fp267"; sha256 = "04nd7civ561x2lwcmxhsqbprml3178jfc58fy1v7hzqg5k4nbhy3";
}; };
buildInputs = [ parted libuuid gettext ]; buildInputs = [ parted libuuid gettext guile ];
doCheck = true; doCheck = true;
meta = { meta = {
description = "GNU fdisk, a command-line disk partitioning tool"; description = "A command-line disk partitioning tool";
longDescription = '' longDescription = ''
GNU fdisk provides alternatives to util-linux fdisk and util-linux 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/; homepage = http://www.gnu.org/software/fdisk/;
maintainers = [ stdenv.lib.maintainers.ludo ]; 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 { }; fcron = callPackage ../tools/system/fcron { };
fdisk = callPackage ../tools/system/fdisk { };
fdm = callPackage ../tools/networking/fdm {}; fdm = callPackage ../tools/networking/fdm {};
figlet = callPackage ../tools/misc/figlet { }; figlet = callPackage ../tools/misc/figlet { };
@ -813,6 +811,10 @@ let
inherit (xorg) libXpm; inherit (xorg) libXpm;
}; };
gnufdisk = callPackage ../tools/system/fdisk {
guile = guile_1_8;
};
gnugrep = gnugrep =
# Use libiconv only on non-GNU platforms (we can't test with # Use libiconv only on non-GNU platforms (we can't test with
# `stdenv ? glibc' at this point.) # `stdenv ? glibc' at this point.)