2019-12-15 11:26:23 +00:00
|
|
|
{ lib, stdenv, cmake, gettext
|
|
|
|
, fetchFromGitHub, fetchFromGitLab
|
|
|
|
, version, libSources
|
2019-11-26 11:02:49 +00:00
|
|
|
}:
|
|
|
|
|
2019-12-14 16:01:15 +00:00
|
|
|
# callPackage libraries {
|
|
|
|
# version = "unstable";
|
|
|
|
# libs.symbols = {
|
|
|
|
# rev = "09f9..";
|
|
|
|
# sha256 = "...";
|
|
|
|
# };
|
|
|
|
# };
|
2019-11-26 11:02:49 +00:00
|
|
|
with lib;
|
|
|
|
let
|
2020-03-16 23:27:18 +00:00
|
|
|
mkLib = name:
|
|
|
|
stdenv.mkDerivation
|
2019-12-15 11:26:23 +00:00
|
|
|
{
|
|
|
|
pname = "kicad-${name}";
|
|
|
|
version = "${version}";
|
|
|
|
src = fetchFromGitHub (
|
|
|
|
{
|
|
|
|
owner = "KiCad";
|
|
|
|
repo = "kicad-${name}";
|
|
|
|
rev = version;
|
|
|
|
inherit name;
|
|
|
|
} // (libSources.${name} or { })
|
|
|
|
);
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta.license = licenses.cc-by-sa-40;
|
2020-03-16 23:27:18 +00:00
|
|
|
};
|
2019-11-26 11:02:49 +00:00
|
|
|
in
|
2019-12-06 03:53:28 +00:00
|
|
|
{
|
2020-03-16 23:27:18 +00:00
|
|
|
symbols = mkLib "symbols";
|
|
|
|
templates = mkLib "templates";
|
|
|
|
footprints = mkLib "footprints";
|
|
|
|
packages3d = mkLib "packages3d";
|
2019-12-15 11:26:23 +00:00
|
|
|
|
|
|
|
# i18n is a special case, not actually a library
|
|
|
|
# more a part of kicad proper, but also optional and separate
|
|
|
|
# since their move to gitlab they're keeping it in a separate path
|
|
|
|
# kicad has no way to find i18n except through a path relative to its install path
|
|
|
|
# therefore this is being linked into ${kicad-base}/share/
|
|
|
|
# and defined here to make use of the rev & sha256's brought here for the libs
|
|
|
|
i18n = let name = "i18n"; in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "kicad-${name}";
|
|
|
|
version = "${version}";
|
|
|
|
src = fetchFromGitLab (
|
|
|
|
{
|
|
|
|
group = "kicad";
|
|
|
|
owner = "code";
|
|
|
|
repo = "kicad-${name}";
|
|
|
|
rev = version;
|
|
|
|
inherit name;
|
|
|
|
} // (libSources.${name} or { })
|
|
|
|
);
|
|
|
|
buildInputs = [ gettext ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta.license = licenses.gpl2; # https://github.com/KiCad/kicad-i18n/issues/3
|
|
|
|
};
|
2019-11-26 11:02:49 +00:00
|
|
|
}
|