summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorStanisław Pitucha <stan.pitucha@envato.com>2022-10-17 23:13:28 +1100
committerStanisław Pitucha <stan.pitucha@envato.com>2022-10-17 23:13:28 +1100
commit7f308439e9c360a7ce8ed23e600d6f885ea61e55 (patch)
tree32cdb1ec04cc70701e9ce4050d4f2437546e7eab /pkgs/applications/graphics
parentab6176ac5b0ee4f18e9cb380a41a6e1816c7bc89 (diff)
downloadnixpkgs-7f308439e9c360a7ce8ed23e600d6f885ea61e55.tar
nixpkgs-7f308439e9c360a7ce8ed23e600d6f885ea61e55.tar.gz
nixpkgs-7f308439e9c360a7ce8ed23e600d6f885ea61e55.tar.bz2
nixpkgs-7f308439e9c360a7ce8ed23e600d6f885ea61e55.tar.lz
nixpkgs-7f308439e9c360a7ce8ed23e600d6f885ea61e55.tar.xz
nixpkgs-7f308439e9c360a7ce8ed23e600d6f885ea61e55.tar.zst
nixpkgs-7f308439e9c360a7ce8ed23e600d6f885ea61e55.zip
gnome-obfuscate: fix darwin build
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/gnome-obfuscate/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/gnome-obfuscate/default.nix b/pkgs/applications/graphics/gnome-obfuscate/default.nix
index 1fca4d2004e..4dc186c5f84 100644
--- a/pkgs/applications/graphics/gnome-obfuscate/default.nix
+++ b/pkgs/applications/graphics/gnome-obfuscate/default.nix
@@ -15,6 +15,7 @@
 , glib
 , gtk4
 , libadwaita
+, Foundation
 }:
 
 stdenv.mkDerivation rec {
@@ -54,6 +55,8 @@ stdenv.mkDerivation rec {
     glib
     gtk4
     libadwaita
+  ] ++ lib.optionals stdenv.isDarwin [
+    Foundation
   ];
 
   postPatch = ''