2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl
|
2016-08-11 20:42:42 -07:00
|
|
|
, IOKit ? null }:
|
2014-10-08 01:27:15 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-19 13:15:30 -07:00
|
|
|
name = "libstatgrab-0.92";
|
2014-10-08 01:27:15 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://ftp.i-scream.org/pub/i-scream/libstatgrab/${name}.tar.gz";
|
2019-07-19 13:15:30 -07:00
|
|
|
sha256 = "15m1sl990l85ijf8pnc6hdfha6fqyiq74mijrzm3xz4zzxm91wav";
|
2014-10-08 01:27:15 -07:00
|
|
|
};
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
buildInputs = [] ++ lib.optional stdenv.isDarwin IOKit;
|
2016-08-11 20:42:42 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.i-scream.org/libstatgrab/";
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A library that provides cross platforms access to statistics about the running system";
|
2014-10-08 01:27:15 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|