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