summary refs log tree commit diff
path: root/pkgs/development/libraries/gperftools
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-01-20 01:28:20 +0000
committerAlyssa Ross <hi@alyssa.is>2023-01-22 15:19:53 +0000
commitaa7627a19f1cc46de098ca0e0c598790908f50a0 (patch)
tree47823666cdff6f3517783b32e1eaad60fcdc53af /pkgs/development/libraries/gperftools
parent4e9efbd52a507b91e356e2f2a0f3bcc354c38a96 (diff)
downloadnixpkgs-aa7627a19f1cc46de098ca0e0c598790908f50a0.tar
nixpkgs-aa7627a19f1cc46de098ca0e0c598790908f50a0.tar.gz
nixpkgs-aa7627a19f1cc46de098ca0e0c598790908f50a0.tar.bz2
nixpkgs-aa7627a19f1cc46de098ca0e0c598790908f50a0.tar.lz
nixpkgs-aa7627a19f1cc46de098ca0e0c598790908f50a0.tar.xz
nixpkgs-aa7627a19f1cc46de098ca0e0c598790908f50a0.tar.zst
nixpkgs-aa7627a19f1cc46de098ca0e0c598790908f50a0.zip
gperftools: broaden platforms
Builds fine for NetBSD, will build for FreeBSD once
https://github.com/NixOS/nixpkgs/pull/211230 is merged, and the README
mentions some amount of Windows support.
Diffstat (limited to 'pkgs/development/libraries/gperftools')
-rw-r--r--pkgs/development/libraries/gperftools/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gperftools/default.nix b/pkgs/development/libraries/gperftools/default.nix
index c4f7770ae8c..002d07cc33b 100644
--- a/pkgs/development/libraries/gperftools/default.nix
+++ b/pkgs/development/libraries/gperftools/default.nix
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     homepage = "https://github.com/gperftools/gperftools";
     description = "Fast, multi-threaded malloc() and nifty performance analysis tools";
-    platforms = with platforms; linux ++ darwin;
+    platforms = platforms.all;
     license = licenses.bsd3;
     maintainers = with maintainers; [ vcunat ];
   };