Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gnome-menus: drop intltool

See: https://gitlab.gnome.org/GNOME/gnome-menus/blob/74771e78de764bcd9d42e6a3e2c6262458355af9/NEWS#L7

+6 -3
+6 -3
pkgs/development/libraries/gnome-menus/default.nix
··· 1 - { stdenv, fetchurl, intltool, pkgconfig, glib, gobject-introspection }: 1 + { stdenv, fetchurl, pkgconfig, glib, gobject-introspection }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gnome-menus"; ··· 9 9 sha256 = "1iihxcibjg22jxsw3s1cxzcq0rhn1rdmx4xg7qjqij981afs8dr7"; 10 10 }; 11 11 12 - makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"; 12 + makeFlags = [ 13 + "INTROSPECTION_GIRDIR=${placeholder ''out''}/share/gir-1.0/" 14 + "INTROSPECTION_TYPELIBDIR=${placeholder ''out''}/lib/girepository-1.0" 15 + ]; 13 16 14 17 nativeBuildInputs = [ pkgconfig ]; 15 - buildInputs = [ intltool glib gobject-introspection ]; 18 + buildInputs = [ glib gobject-introspection ]; 16 19 17 20 meta = { 18 21 homepage = https://www.gnome.org;