linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libstatgrab / default.nix
blob6d874fe236782fd5294e2ced853a7e8338ecabd1
1 { lib, stdenv, fetchurl
2 , IOKit ? null }:
4 stdenv.mkDerivation rec {
5   name = "libstatgrab-0.92";
7   src = fetchurl {
8     url = "https://ftp.i-scream.org/pub/i-scream/libstatgrab/${name}.tar.gz";
9     sha256 = "15m1sl990l85ijf8pnc6hdfha6fqyiq74mijrzm3xz4zzxm91wav";
10   };
12   buildInputs = [] ++ lib.optional stdenv.isDarwin IOKit;
14   meta = with lib; {
15     homepage = "https://www.i-scream.org/libstatgrab/";
16     description = "A library that provides cross platforms access to statistics about the running system";
17     license = licenses.gpl2;
18     platforms = platforms.unix;
19   };