about summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-11-03 17:49:14 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-11-06 07:23:09 -0300
commit75dadb2dfe1837aef23d2830636674c272d2019a (patch)
tree7a2811ff61372c261f4f0053e7033c0685855da0 /pkgs/tools/X11
parent99f10b4ceb4c09f892db68abb8576b52a8c9a6aa (diff)
xosview: migrate to by-name
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/xosview/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/tools/X11/xosview/default.nix b/pkgs/tools/X11/xosview/default.nix
deleted file mode 100644
index 3b09b150a0fc2..0000000000000
--- a/pkgs/tools/X11/xosview/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, libX11
-, libXpm
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "xosview";
-  version = "1.24";
-
-  src = fetchFromGitHub {
-    owner = "hills";
-    repo = finalAttrs.pname;
-    rev = finalAttrs.version;
-    hash = "sha256-9Pr7voJiCH7oBziMFRHCWxoyuGdndcdRD2POjiNT7yw=";
-  };
-
-  dontConfigure = true;
-
-  buildInputs = [
-    libX11
-    libXpm
-  ];
-
-  makeFlags = [
-    "PREFIX=${placeholder "out"}"
-    "PLATFORM=linux"
-  ];
-
-  meta = with lib; {
-    homepage = "http://www.pogo.org.uk/~mark/xosview/";
-    description = "A classic system monitoring tool";
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = with platforms; linux;
-  };
-})
-# TODO: generalize to other platforms