mirror of
https://github.com/logos-co/logos-liblogos.git
synced 2026-08-27 12:51:10 +00:00
15 lines
359 B
Nix
15 lines
359 B
Nix
# Builds everything - shared build derivation
|
|
{ pkgs, common, src }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
pname = "${common.pname}-build";
|
|
version = common.version;
|
|
|
|
inherit src;
|
|
inherit (common) nativeBuildInputs buildInputs cmakeFlags meta env;
|
|
|
|
# Build everything but don't install yet
|
|
# The install is done by the component-specific derivations
|
|
}
|
|
|