summary refs log tree commit diff
diff options
context:
space:
mode:
authorKevin Cox <kevincox@kevincox.ca>2022-06-14 09:11:06 -0400
committerKevin Cox <kevincox@kevincox.ca>2022-06-15 08:07:00 -0400
commitb88c8dbe07d74b928d3ca301089368cb039e11de (patch)
tree486c714022c1acc1b04b850c5cdcad23e4d0e42a
parent1712ecaa5118815292f57d6669c3c81d84d842b3 (diff)
downloadnixpkgs-b88c8dbe07d74b928d3ca301089368cb039e11de.tar
nixpkgs-b88c8dbe07d74b928d3ca301089368cb039e11de.tar.gz
nixpkgs-b88c8dbe07d74b928d3ca301089368cb039e11de.tar.bz2
nixpkgs-b88c8dbe07d74b928d3ca301089368cb039e11de.tar.lz
nixpkgs-b88c8dbe07d74b928d3ca301089368cb039e11de.tar.xz
nixpkgs-b88c8dbe07d74b928d3ca301089368cb039e11de.tar.zst
nixpkgs-b88c8dbe07d74b928d3ca301089368cb039e11de.zip
watchlog: Remove Darwin from supported platforms.
-rw-r--r--pkgs/tools/misc/watchlog/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/misc/watchlog/default.nix b/pkgs/tools/misc/watchlog/default.nix
index 1cc323ca457..b89d42354e1 100644
--- a/pkgs/tools/misc/watchlog/default.nix
+++ b/pkgs/tools/misc/watchlog/default.nix
@@ -22,5 +22,8 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://gitlab.com/kevincox/watchlog";
     license = lib.licenses.asl20;
     maintainers = with lib.maintainers; [ kevincox ];
+
+    # Dependency only supports Linux + Windows: https://github.com/mentaljam/standard_paths/tree/master/src
+    platforms = with lib.platforms; linux ++ windows;
   };
 }