Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libstatgrab / default.nix
blobd2a94d7168a8dd0d50a1903e5843eb546a8319a2
1 { lib
2 , stdenv
3 , fetchurl
4 , IOKit
5 }:
7 stdenv.mkDerivation rec {
8   pname = "libstatgrab";
9   version = "0.92.1";
11   src = fetchurl {
12     url = "https://ftp.i-scream.org/pub/i-scream/libstatgrab/${pname}-${version}.tar.gz";
13     sha256 = "sha256-VoiqSmhVR9cXSoo3PqnY7pJ+dm48wwK97jRSPCxdbBE=";
14   };
16   buildInputs = lib.optional stdenv.isDarwin IOKit;
18   meta = with lib; {
19     homepage = "https://www.i-scream.org/libstatgrab/";
20     description = "A library that provides cross platforms access to statistics about the running system";
21     maintainers = with maintainers; [ ];
22     license = licenses.gpl2;
23     platforms = platforms.unix;
24   };