summary refs log tree commit diff
diff options
context:
space:
mode:
authorBryan Gardiner <bog@khumba.net>2021-02-11 04:23:04 -0800
committerBryan Gardiner <bog@khumba.net>2021-02-14 22:18:03 -0800
commit12b185c040605c3be8e4af1cfc3394ace21a7e46 (patch)
treecea691e1e0b02b9cc4fc44003c381cea76d7be30
parenteee95f7660f816be0c5d45bc9b3e137338a602cb (diff)
downloadnixpkgs-12b185c040605c3be8e4af1cfc3394ace21a7e46.tar
nixpkgs-12b185c040605c3be8e4af1cfc3394ace21a7e46.tar.gz
nixpkgs-12b185c040605c3be8e4af1cfc3394ace21a7e46.tar.bz2
nixpkgs-12b185c040605c3be8e4af1cfc3394ace21a7e46.tar.lz
nixpkgs-12b185c040605c3be8e4af1cfc3394ace21a7e46.tar.xz
nixpkgs-12b185c040605c3be8e4af1cfc3394ace21a7e46.tar.zst
nixpkgs-12b185c040605c3be8e4af1cfc3394ace21a7e46.zip
gkrellm: add desktop file, maintainer; other fixups
-rw-r--r--pkgs/applications/misc/gkrellm/default.nix26
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 23 insertions, 5 deletions
diff --git a/pkgs/applications/misc/gkrellm/default.nix b/pkgs/applications/misc/gkrellm/default.nix
index 2cc20b424b1..aaaab255c76 100644
--- a/pkgs/applications/misc/gkrellm/default.nix
+++ b/pkgs/applications/misc/gkrellm/default.nix
@@ -1,5 +1,6 @@
 { lib, fetchurl, stdenv, gettext, pkg-config, glib, gtk2, libX11, libSM, libICE, which
-, IOKit ? null }:
+, IOKit, copyDesktopItems, makeDesktopItem, wrapGAppsHook
+}:
 
 with lib;
 
@@ -11,7 +12,7 @@ stdenv.mkDerivation rec {
     sha256 = "01lccz4fga40isv09j8rjgr0qy10rff9vj042n6gi6gdv4z69q0y";
   };
 
-  nativeBuildInputs = [ pkg-config which ];
+  nativeBuildInputs = [ copyDesktopItems pkg-config which wrapGAppsHook ];
   buildInputs = [gettext glib gtk2 libX11 libSM libICE]
     ++ optionals stdenv.isDarwin [ IOKit ];
 
@@ -19,7 +20,7 @@ stdenv.mkDerivation rec {
 
   # Makefiles are patched to fix references to `/usr/X11R6' and to add
   # `-lX11' to make sure libX11's store path is in the RPATH.
-  patchPhase = ''
+  postPatch = ''
     echo "patching makefiles..."
     for i in Makefile src/Makefile server/Makefile
     do
@@ -30,6 +31,23 @@ stdenv.mkDerivation rec {
   makeFlags = [ "STRIP=-s" ];
   installFlags = [ "DESTDIR=$(out)" ];
 
+  # This icon is used by the desktop file.
+  postInstall = ''
+    install -Dm444 -T src/icon.xpm $out/share/pixmaps/gkrellm.xpm
+  '';
+
+  desktopItems = [
+    (makeDesktopItem {
+      name = "gkrellm";
+      exec = "gkrellm";
+      icon = "gkrellm";
+      desktopName = "GKrellM";
+      genericName = "System monitor";
+      comment = "The GNU Krell Monitors";
+      categories = "System;Monitor;";
+    })
+  ];
+
   meta = {
     description = "Themeable process stack of system monitors";
     longDescription = ''
@@ -40,7 +58,7 @@ stdenv.mkDerivation rec {
 
     homepage = "http://gkrellm.srcbox.net";
     license = licenses.gpl3Plus;
-    maintainers = [ ];
+    maintainers = with maintainers; [ khumba ];
     platforms = platforms.linux;
   };
 }
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index ae97256b7d5..fdeab28625b 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -22485,7 +22485,7 @@ in
   gitit = callPackage ../applications/misc/gitit {};
 
   gkrellm = callPackage ../applications/misc/gkrellm {
-    inherit (darwin) IOKit;
+    inherit (darwin.apple_sdk.frameworks) IOKit;
   };
 
   glow = callPackage ../applications/editors/glow { };