From 72c59f92298cf6ec872bb0c93e44bea4efd72aec Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 29 Mar 2025 19:28:20 +0900 Subject: [PATCH] nix: check share/applications in share package This allows share directories without share/applications/ to build correctly. Signed-off-by: Ophestra --- nixos.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/nixos.nix b/nixos.nix index ae55516..8671150 100644 --- a/nixos.nix +++ b/nixos.nix @@ -201,9 +201,11 @@ in ${copy "${pkg}/share/icons"} ${copy "${pkg}/share/man"} - substituteInPlace $out/share/applications/* \ - --replace-warn '${pkg}/bin/' "" \ - --replace-warn '${pkg}/libexec/' "" + if test -d "$out/share/applications"; then + substituteInPlace $out/share/applications/* \ + --replace-warn '${pkg}/bin/' "" \ + --replace-warn '${pkg}/libexec/' "" + fi '' ) ++ acc