Unverified Commit 33ae86a9 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

texinfo: fix issue with libiconv not being passed in by removing top-level...

texinfo: fix issue with libiconv not being passed in by removing top-level `with lib` statement (#308835)
parent 512b6d9a
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
{ version, sha256, patches ? [] }:

{ lib, stdenv, buildPackages, fetchurl, perl, xz, libintl, bash
, gnulib, gawk
, gnulib, gawk, libiconv

# we are a dependency of gcc, this simplifies bootstraping
, interactive ? false, ncurses, procps
@@ -13,11 +13,10 @@
# files.

let
  inherit (lib) getDev getLib optional optionals optionalString;
  crossBuildTools = stdenv.hostPlatform != stdenv.buildPlatform;
in

with lib;

stdenv.mkDerivation {
  pname = "texinfo${optionalString interactive "-interactive"}";
  inherit version;
@@ -83,7 +82,7 @@ stdenv.mkDerivation {
    done
  '';

  meta = {
  meta = with lib; {
    description = "The GNU documentation system";
    homepage = "https://www.gnu.org/software/texinfo/";
    changelog = "https://git.savannah.gnu.org/cgit/texinfo.git/plain/NEWS";