Merge pull request #129904 from gfrascadorio/master
idutils: fix by using latest gnulib
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "gnulib";
|
||||
version = "20200223";
|
||||
version = "20210702";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.savannah.gnu.org/r/gnulib.git";
|
||||
rev = "292fd5d6ff5ecce81ec3c648f353732a9ece83c0";
|
||||
sha256 = "0hkg3nql8nsll0vrqk4ifda0v4kpi67xz42r8daqsql6c4rciqnw";
|
||||
rev = "901694b904cd861adc2529b2e05a3fb33f9b534f";
|
||||
sha256 = "1f5znlv2wjziglw9vlygdgm4jfbsz34h2dz6w4h90bl4hm0ycb1w";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace configure.ac \
|
||||
--replace "AC_PREREQ([2.62])" "AC_PREREQ([2.63])"
|
||||
--replace "AC_PREREQ([2.62])" "AC_PREREQ([2.64])"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
||||
@@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ autoconf automake ];
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace configure.ac --replace 'AC_PREREQ([2.63])' 'AC_PREREQ(2.64)'
|
||||
./build-aux/autogen.sh
|
||||
'';
|
||||
|
||||
|
||||
@@ -18,6 +18,10 @@ stdenv.mkDerivation {
|
||||
++ map fetchurl (import ./grub1.patches.nix)
|
||||
;
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace ./configure.ac --replace 'AC_PREREQ(2.61)' 'AC_PREREQ(2.64)'
|
||||
'';
|
||||
|
||||
# autoreconfHook required for the splashimage patch.
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ texinfo ];
|
||||
|
||||
@@ -1,27 +1,29 @@
|
||||
{ fetchurl, lib, stdenv, emacs }:
|
||||
{ fetchurl, lib, stdenv, emacs, gnulib, autoconf, bison, automake, gettext, gperf, texinfo, perl, rsync, gawk}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "idutils-4.6";
|
||||
pname = "idutils";
|
||||
version = "4.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/idutils/${name}.tar.xz";
|
||||
url = "mirror://gnu/idutils/idutils-${version}.tar.xz";
|
||||
sha256 = "1hmai3422iaqnp34kkzxdnywl7n7pvlxp11vrw66ybxn9wxg90c1";
|
||||
};
|
||||
|
||||
preConfigure =
|
||||
''
|
||||
# Fix for building on Glibc 2.16. Won't be needed once the
|
||||
# gnulib in idutils is updated.
|
||||
sed -i '/gets is a security hole/d' lib/stdio.in.h
|
||||
preConfigure = ''
|
||||
# replace embedded gnulib tests with those from gnulib package
|
||||
bash -O extglob -c "cd gnulib-tests; rm -r !(Makefile.am)"
|
||||
substituteInPlace ./configure.ac --replace "AC_PREREQ(2.61)" "AC_PREREQ(2.64)"
|
||||
./bootstrap --force --gnulib-srcdir=${gnulib} --skip-po --bootstrap-sync --no-git
|
||||
'';
|
||||
|
||||
buildInputs = lib.optional stdenv.isLinux emacs;
|
||||
nativeBuildInputs = [ gnulib autoconf bison automake gettext gperf texinfo perl rsync gawk ];
|
||||
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
patches = [ ./nix-mapping.patch ];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Text searching utility";
|
||||
|
||||
longDescription = ''
|
||||
@@ -46,10 +48,9 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
homepage = "https://www.gnu.org/software/idutils/";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
maintainers = [ ];
|
||||
maintainers = with maintainers; [ gfrascadorio ];
|
||||
platforms = lib.platforms.all;
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -5546,7 +5546,17 @@ in
|
||||
|
||||
grub2 = grub2_full;
|
||||
|
||||
grub2_full = callPackage ../tools/misc/grub/2.0x.nix { };
|
||||
grub2_full = callPackage ../tools/misc/grub/2.0x.nix {
|
||||
# update breaks grub2
|
||||
gnulib = pkgs.gnulib.overrideAttrs (oldAttrs: rec {
|
||||
version = "20200223";
|
||||
src = fetchgit {
|
||||
url = "https://git.savannah.gnu.org/r/gnulib.git";
|
||||
rev = "292fd5d6ff5ecce81ec3c648f353732a9ece83c0";
|
||||
sha256 = "0hkg3nql8nsll0vrqk4ifda0v4kpi67xz42r8daqsql6c4rciqnw";
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
grub2_efi = grub2.override {
|
||||
efiSupport = true;
|
||||
|
||||
Reference in New Issue
Block a user