summary refs log tree commit diff
diff options
context:
space:
mode:
authorjoachifm <joachifm@users.noreply.github.com>2016-03-20 21:40:15 +0000
committerjoachifm <joachifm@users.noreply.github.com>2016-03-20 21:40:15 +0000
commit1bf6628ee52f98b4abd85245ab245bbeec0ce55e (patch)
treedcc7e2908fd1763159d491a72231e18538f2face
parente5343cd9e63ab54bde55ef69bd9f0eebed3b07dc (diff)
parent16ed322928b30b39942054abb3b5d026ec1a3ec0 (diff)
downloadnixlib-1bf6628ee52f98b4abd85245ab245bbeec0ce55e.tar
nixlib-1bf6628ee52f98b4abd85245ab245bbeec0ce55e.tar.gz
nixlib-1bf6628ee52f98b4abd85245ab245bbeec0ce55e.tar.bz2
nixlib-1bf6628ee52f98b4abd85245ab245bbeec0ce55e.tar.lz
nixlib-1bf6628ee52f98b4abd85245ab245bbeec0ce55e.tar.xz
nixlib-1bf6628ee52f98b4abd85245ab245bbeec0ce55e.tar.zst
nixlib-1bf6628ee52f98b4abd85245ab245bbeec0ce55e.zip
Merge pull request #14089 from aneeshusa/fix-htop-platforms
htop: fix platforms attribute
-rw-r--r--pkgs/tools/system/htop/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix
index a9d15b317f98..46547aa45fd9 100644
--- a/pkgs/tools/system/htop/default.nix
+++ b/pkgs/tools/system/htop/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
     description = "An interactive process viewer for Linux";
     homepage = https://hisham.hm/htop/;
     license = licenses.gpl2Plus;
-    platforms = with platforms; [ linux freebsd openbsd darwin ];
+    platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin;
     maintainers = with maintainers; [ rob simons relrod nckx ];
   };
 }