mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
e37d772beb
the date changes more often than most of the inputs the date can also change on the base without other changes this causes a substantial rebuild for no reason
31 lines
703 B
Nix
31 lines
703 B
Nix
{ lib, stdenv
|
|
, cmake
|
|
, gettext
|
|
, libSrc
|
|
}:
|
|
let
|
|
mkLib = name:
|
|
stdenv.mkDerivation {
|
|
pname = "kicad-${name}";
|
|
version = builtins.substring 0 10 (libSrc name).rev;
|
|
|
|
src = libSrc name;
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = rec {
|
|
license = lib.licenses.cc-by-sa-40;
|
|
platforms = lib.platforms.all;
|
|
# the 3d models are a ~1 GiB download and occupy ~5 GiB in store.
|
|
# this would exceed the hydra output limit
|
|
hydraPlatforms = if (name == "packages3d") then [ ] else platforms;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
symbols = mkLib "symbols";
|
|
templates = mkLib "templates";
|
|
footprints = mkLib "footprints";
|
|
packages3d = mkLib "packages3d";
|
|
}
|