libstatgrab: cleanup

This commit is contained in:
Sandro Jäckel 2021-06-30 01:16:23 +02:00
parent 00ead2addd
commit 6b73bd1fd6
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -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;
};