about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/system
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/system')
-rw-r--r--nixpkgs/pkgs/applications/system/glances/default.nix1
-rw-r--r--nixpkgs/pkgs/applications/system/qjournalctl/default.nix1
-rw-r--r--nixpkgs/pkgs/applications/system/supergfxctl/default.nix6
-rw-r--r--nixpkgs/pkgs/applications/system/systemdgenie/default.nix1
4 files changed, 6 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/applications/system/glances/default.nix b/nixpkgs/pkgs/applications/system/glances/default.nix
index 7e66aacf25c1..7a4db20a5032 100644
--- a/nixpkgs/pkgs/applications/system/glances/default.nix
+++ b/nixpkgs/pkgs/applications/system/glances/default.nix
@@ -48,6 +48,7 @@ buildPythonApplication rec {
   meta = with lib; {
     homepage = "https://nicolargo.github.io/glances/";
     description = "Cross-platform curses-based monitoring tool";
+    mainProgram = "glances";
     changelog = "https://github.com/nicolargo/glances/blob/v${version}/NEWS.rst";
     license = licenses.lgpl3Only;
     maintainers = with maintainers; [ jonringer primeos koral ];
diff --git a/nixpkgs/pkgs/applications/system/qjournalctl/default.nix b/nixpkgs/pkgs/applications/system/qjournalctl/default.nix
index 563d0904fc53..d3bec7e306d5 100644
--- a/nixpkgs/pkgs/applications/system/qjournalctl/default.nix
+++ b/nixpkgs/pkgs/applications/system/qjournalctl/default.nix
@@ -36,6 +36,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Qt-based graphical user interface for systemd's journalctl command";
+    mainProgram = "qjournalctl";
     homepage = "https://github.com/pentix/qjournalctl";
     license = licenses.gpl3Only;
     platforms = platforms.all;
diff --git a/nixpkgs/pkgs/applications/system/supergfxctl/default.nix b/nixpkgs/pkgs/applications/system/supergfxctl/default.nix
index cb05475dd037..4180699155e6 100644
--- a/nixpkgs/pkgs/applications/system/supergfxctl/default.nix
+++ b/nixpkgs/pkgs/applications/system/supergfxctl/default.nix
@@ -7,16 +7,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "supergfxctl";
-  version = "5.1.2";
+  version = "5.2.1";
 
   src = fetchFromGitLab {
     owner = "asus-linux";
     repo = "supergfxctl";
     rev = version;
-    hash = "sha256-HJGyjFeN3bq+ArCGfFHAMnjW76wSnNyxPWR0ELcyjLg=";
+    hash = "sha256-gjMLyT3pvQhmjz9SFbYlDAqg+tCX5ORkCkcnyBzO5ws=";
   };
 
-  cargoSha256 = "sha256-wPqCXbpSYXwsUi1mv9ZBSxdhDgDqsjKxnPzQcURlnDU=";
+  cargoHash = "sha256-ndugyiAYPDyue2Ajxx22BNvYc9iBTxZqP5OxaqmC7U0=";
 
   postPatch = ''
     substituteInPlace data/supergfxd.service --replace /usr/bin/supergfxd $out/bin/supergfxd
diff --git a/nixpkgs/pkgs/applications/system/systemdgenie/default.nix b/nixpkgs/pkgs/applications/system/systemdgenie/default.nix
index ad009be56355..c8d747a8e122 100644
--- a/nixpkgs/pkgs/applications/system/systemdgenie/default.nix
+++ b/nixpkgs/pkgs/applications/system/systemdgenie/default.nix
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec{
 
   meta = with lib; {
     description = "Systemd management utility";
+    mainProgram = "systemdgenie";
     homepage = "https://kde.org";
     license = licenses.gpl2;
     maintainers = [ maintainers.pasqui23 ];