about summary refs log tree commit diff
path: root/pkgs/development/libraries/libshumate
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2022-10-17 21:09:47 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2022-10-17 21:09:47 +0200
commitc1d932f54c17c5975acf2c664c5d641477004463 (patch)
tree074f5b66d16735e4667be56ed5c16ef9a0af6dac /pkgs/development/libraries/libshumate
parent7d2764c6107964ee74046c170a9ea4cd2816090d (diff)
gnome-maps: add darwin support
Diffstat (limited to 'pkgs/development/libraries/libshumate')
-rw-r--r--pkgs/development/libraries/libshumate/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libshumate/default.nix b/pkgs/development/libraries/libshumate/default.nix
index 5911e199bcb2f..2c1f4365b5a66 100644
--- a/pkgs/development/libraries/libshumate/default.nix
+++ b/pkgs/development/libraries/libshumate/default.nix
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
     "-Ddemos=true"
   ];
 
-  doCheck = true;
+  doCheck = !stdenv.isDarwin;
 
   checkPhase = ''
     runHook preCheck
@@ -83,6 +83,6 @@ stdenv.mkDerivation rec {
     homepage = "https://gitlab.gnome.org/GNOME/libshumate";
     license = licenses.lgpl21Plus;
     maintainers = teams.gnome.members;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
   };
 }