summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-06-30 01:16:23 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-06-30 01:16:23 +0200
commit6b73bd1fd6a5c7bfee9b885825829302cb04816c (patch)
tree6adabbf0d35c51ed5a82cc15e37531d7bcaa0a2e
parent00ead2addd89654e843a5eb977ecb089044a2245 (diff)
downloadnixpkgs-6b73bd1fd6a5c7bfee9b885825829302cb04816c.tar
nixpkgs-6b73bd1fd6a5c7bfee9b885825829302cb04816c.tar.gz
nixpkgs-6b73bd1fd6a5c7bfee9b885825829302cb04816c.tar.bz2
nixpkgs-6b73bd1fd6a5c7bfee9b885825829302cb04816c.tar.lz
nixpkgs-6b73bd1fd6a5c7bfee9b885825829302cb04816c.tar.xz
nixpkgs-6b73bd1fd6a5c7bfee9b885825829302cb04816c.tar.zst
nixpkgs-6b73bd1fd6a5c7bfee9b885825829302cb04816c.zip
libstatgrab: cleanup
-rw-r--r--pkgs/development/libraries/libstatgrab/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libstatgrab/default.nix b/pkgs/development/libraries/libstatgrab/default.nix
index 6d874fe2367..fe2717cfeb3 100644
--- a/pkgs/development/libraries/libstatgrab/default.nix
+++ b/pkgs/development/libraries/libstatgrab/default.nix
@@ -1,5 +1,8 @@
-{ lib, stdenv, fetchurl
-, IOKit ? null }:
+{ lib
+, stdenv
+, fetchurl
+, IOKit
+}:
 
 stdenv.mkDerivation rec {
   name = "libstatgrab-0.92";
@@ -9,11 +12,12 @@ stdenv.mkDerivation rec {
     sha256 = "15m1sl990l85ijf8pnc6hdfha6fqyiq74mijrzm3xz4zzxm91wav";
   };
 
-  buildInputs = [] ++ lib.optional stdenv.isDarwin IOKit;
+  buildInputs = lib.optional stdenv.isDarwin IOKit;
 
   meta = with lib; {
     homepage = "https://www.i-scream.org/libstatgrab/";
     description = "A library that provides cross platforms access to statistics about the running system";
+    maintainers = with maintainers; [ ];
     license = licenses.gpl2;
     platforms = platforms.unix;
   };