Merge pull request #128694 from SuperSandro2000/libstatgrab

libstatgrab: cleanup
This commit is contained in:
Sandro 2021-06-30 03:45:11 +02:00 committed by GitHub
commit 75f4a08594
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,8 @@
{ lib, stdenv, fetchurl { lib
, IOKit ? null }: , stdenv
, fetchurl
, IOKit
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libstatgrab-0.92"; name = "libstatgrab-0.92";
@ -9,11 +12,12 @@ stdenv.mkDerivation rec {
sha256 = "15m1sl990l85ijf8pnc6hdfha6fqyiq74mijrzm3xz4zzxm91wav"; sha256 = "15m1sl990l85ijf8pnc6hdfha6fqyiq74mijrzm3xz4zzxm91wav";
}; };
buildInputs = [] ++ lib.optional stdenv.isDarwin IOKit; buildInputs = lib.optional stdenv.isDarwin IOKit;
meta = with lib; { meta = with lib; {
homepage = "https://www.i-scream.org/libstatgrab/"; homepage = "https://www.i-scream.org/libstatgrab/";
description = "A library that provides cross platforms access to statistics about the running system"; description = "A library that provides cross platforms access to statistics about the running system";
maintainers = with maintainers; [ ];
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.unix; platforms = platforms.unix;
}; };