mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 07:04:28 +00:00
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{ wrapGAppsHook
|
|
, glib
|
|
, lib
|
|
, stdenv
|
|
, xorg
|
|
, switchboard
|
|
, switchboardPlugs
|
|
, plugs
|
|
# Only useful to disable for development testing.
|
|
, useDefaultPlugs ? true
|
|
, testName ? null
|
|
}:
|
|
|
|
let
|
|
selectedPlugs =
|
|
if plugs == null then switchboardPlugs
|
|
else plugs ++ (lib.optionals useDefaultPlugs switchboardPlugs);
|
|
|
|
testingName = lib.optionalString (testName != null) "${testName}-";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${testingName}${switchboard.name}-with-plugs";
|
|
|
|
src = null;
|
|
|
|
paths = [
|
|
switchboard
|
|
] ++ selectedPlugs;
|
|
|
|
passAsFile = [ "paths" ];
|
|
|
|
nativeBuildInputs = [
|
|
glib
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = lib.forEach selectedPlugs (x: x.buildInputs)
|
|
++ selectedPlugs;
|
|
|
|
dontUnpack = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
preferLocalBuild = true;
|
|
allowSubstitutes = false;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
for i in $(cat $pathsPath); do
|
|
${xorg.lndir}/bin/lndir -silent $i $out
|
|
done
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--set SWITCHBOARD_PLUGS_PATH "$out/lib/switchboard"
|
|
)
|
|
'';
|
|
|
|
inherit (switchboard) meta;
|
|
}
|
|
|