summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-03-17 16:44:58 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-03-17 16:44:58 +0200
commitc0143c82d1879e3f7778a09b235bf7059b284e59 (patch)
treebd7c7459f3cce2b2da01b82aa79be0dc61477ace
parenta8fa8c2e90e051dc47993f3a91b776e5bf7d9391 (diff)
downloadnixpkgs-c0143c82d1879e3f7778a09b235bf7059b284e59.tar
nixpkgs-c0143c82d1879e3f7778a09b235bf7059b284e59.tar.gz
nixpkgs-c0143c82d1879e3f7778a09b235bf7059b284e59.tar.bz2
nixpkgs-c0143c82d1879e3f7778a09b235bf7059b284e59.tar.lz
nixpkgs-c0143c82d1879e3f7778a09b235bf7059b284e59.tar.xz
nixpkgs-c0143c82d1879e3f7778a09b235bf7059b284e59.tar.zst
nixpkgs-c0143c82d1879e3f7778a09b235bf7059b284e59.zip
librepo: restrict platforms
-rw-r--r--pkgs/tools/package-management/librepo/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/package-management/librepo/default.nix b/pkgs/tools/package-management/librepo/default.nix
index d19b1f868c0..8c80632f0d0 100644
--- a/pkgs/tools/package-management/librepo/default.nix
+++ b/pkgs/tools/package-management/librepo/default.nix
@@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
     description = "Library providing C and Python (libcURL like) API for downloading linux repository metadata and packages";
     homepage = "https://rpm-software-management.github.io/librepo/";
     license = licenses.lgpl2Plus;
-    platforms = platforms.linux ++ platforms.darwin;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ copumpkin ];
   };
 }