about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/psmisc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/psmisc/default.nix')
-rw-r--r--pkgs/os-specific/linux/psmisc/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/os-specific/linux/psmisc/default.nix b/pkgs/os-specific/linux/psmisc/default.nix
deleted file mode 100644
index 0f920eeafb5d..000000000000
--- a/pkgs/os-specific/linux/psmisc/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitLab
-, autoconf
-, automake
-, gettext
-, ncurses
-}:
-
-stdenv.mkDerivation rec {
-  pname = "psmisc";
-  version = "23.7";
-
-  src = fetchFromGitLab {
-    owner = pname;
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-49YpdIh0DxLHfxos4sw1HUkV0XQBqmm4M9b0T4eN2xI=";
-  };
-
-  nativeBuildInputs = [ autoconf automake gettext ];
-  buildInputs = [ ncurses ];
-
-  preConfigure = lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
-    # Goes past the rpl_malloc linking failure
-    export ac_cv_func_malloc_0_nonnull=yes
-    export ac_cv_func_realloc_0_nonnull=yes
-  '' + ''
-    echo $version > .tarball-version
-    ./autogen.sh
-  '';
-
-  meta = with lib; {
-    homepage = "https://gitlab.com/psmisc/psmisc";
-    description = "A set of small useful utilities that use the proc filesystem (such as fuser, killall and pstree)";
-    platforms = platforms.linux;
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ ryantm ];
-  };
-}