about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2024-02-29 14:22:45 -0300
committerGitHub <noreply@github.com>2024-02-29 14:22:45 -0300
commitc932ac9d742b0d7fb4b1aaef5a6659fecc8dc1a5 (patch)
tree7a237c3f0edf9545fec7b6c19d6dda714e7ebfbc /pkgs/applications
parentb98ee82f7437a7a6e6d612810d76b6e66964ea9b (diff)
parent10ae6d7725f30e43d952874f8ef1914962ae7f6c (diff)
Merge pull request #291806 from uninsane/pr-swaync-0.10.0-cross
swaynotificationcenter: support cross compilation
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/swaynotificationcenter/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/misc/swaynotificationcenter/default.nix b/pkgs/applications/misc/swaynotificationcenter/default.nix
index a9643e707e5a3..f05aa8fd93450 100644
--- a/pkgs/applications/misc/swaynotificationcenter/default.nix
+++ b/pkgs/applications/misc/swaynotificationcenter/default.nix
@@ -39,6 +39,9 @@ stdenv.mkDerivation (finalAttrs: rec {
     hash = "sha256-7O+DX4uuncUqx5zEKQprZE6tctteT6NU01V2EBHiFqA=";
   };
 
+  # build pkg-config is required to locate the native `scdoc` input
+  depsBuildBuild = [ pkg-config ];
+
   nativeBuildInputs = [
     bash-completion
     # cmake # currently conflicts with meson
@@ -50,7 +53,6 @@ stdenv.mkDerivation (finalAttrs: rec {
     pkg-config
     python3
     sassc
-    pantheon.granite
     scdoc
     vala
     wrapGAppsHook
@@ -68,6 +70,7 @@ stdenv.mkDerivation (finalAttrs: rec {
     libhandy
     libpulseaudio
     librsvg
+    pantheon.granite
     # systemd # ends with broken permission
   ];