summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-06-12 09:15:11 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-06-12 09:15:11 +0200
commitde12094b0e97e36485a26abce86a014d4bddd0de (patch)
treedd9db99a798674258d2f46a6068b910505fa6069 /pkgs/os-specific
parente4dc3f8ae3665f005b241edee76bfbcde7c1b1c1 (diff)
parentaf3d448d335cd22355b6b84857520cfa5cfb380e (diff)
downloadnixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.gz
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.bz2
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.lz
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.xz
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.zst
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.zip
Merge recent master
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/darwin/htop/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/os-specific/darwin/htop/default.nix b/pkgs/os-specific/darwin/htop/default.nix
new file mode 100644
index 000000000000..65e8b09db348
--- /dev/null
+++ b/pkgs/os-specific/darwin/htop/default.nix
@@ -0,0 +1,21 @@
+{ fetchurl, stdenv, ncurses, autoconf, automake }:
+
+stdenv.mkDerivation rec {
+  name = "htop-0.8.2.2";
+
+  src = fetchurl {
+    url = "https://github.com/max-horvath/htop-osx/archive/0.8.2.2.tar.gz";
+    sha256 = "0qxibadn2lfqn10a5jmkv8r5ljfs0vaaa4j6psd7ppxa2w6bx5li";
+  };
+
+  buildInputs = [ autoconf automake ncurses ];
+
+  preConfigure = "./autogen.sh";
+
+  meta = {
+    description = "An interactive process viewer for Mac OS X";
+    homepage = "https://github.com/max-horvath/htop-osx";
+    platforms = stdenv.lib.platforms.darwin;
+    maintainers = with stdenv.lib.maintainers; [ joelteon ];
+  };
+}