Merge pull request #128694 from SuperSandro2000/libstatgrab
libstatgrab: cleanup
This commit is contained in:
commit
75f4a08594
1 changed files with 7 additions and 3 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue