mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
kicad: remove gettext from buildInputs, add to nativeBuildInputs
The i18n "library" does not link against gettext. It only requires the msgfmt utility from gettext, hence gettext should be a nativeBuildInput
This commit is contained in:
parent
9a886d4773
commit
9c73e34d18
|
@ -62,8 +62,7 @@ in
|
|||
inherit name;
|
||||
} // (libSources.${name} or { })
|
||||
);
|
||||
buildInputs = [ gettext ];
|
||||
nativeBuildInputs = [ cmake ];
|
||||
nativeBuildInputs = [ cmake gettext ];
|
||||
meta = {
|
||||
license = licenses.gpl2; # https://github.com/KiCad/kicad-i18n/issues/3
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
|
|
Loading…
Reference in a new issue