f2cb2c447d
This also exposes the full src and version parameters for each derivation, allowing them to overrideable by srcs.
18 lines
301 B
Nix
18 lines
301 B
Nix
{ stdenv
|
|
, cmake
|
|
, gettext
|
|
, src
|
|
, version
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit src version;
|
|
|
|
pname = "kicad-i18n";
|
|
|
|
nativeBuildInputs = [ cmake gettext ];
|
|
meta = with stdenv.lib; {
|
|
license = licenses.gpl2; # https://github.com/KiCad/kicad-i18n/issues/3
|
|
platforms = platforms.all;
|
|
};
|
|
}
|