waylyrics: 0.3.16 -> 0.3.20 (#364626)
[NixPkgs.git] / pkgs / development / libraries / libstatgrab / default.nix
blob3dd55d1e690adc0d30073ae95e2ad507530d7823
2   lib,
3   stdenv,
4   fetchurl,
5   IOKit,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "libstatgrab";
10   version = "0.92.1";
12   src = fetchurl {
13     url = "https://ftp.i-scream.org/pub/i-scream/libstatgrab/${pname}-${version}.tar.gz";
14     sha256 = "sha256-VoiqSmhVR9cXSoo3PqnY7pJ+dm48wwK97jRSPCxdbBE=";
15   };
17   buildInputs = lib.optional stdenv.hostPlatform.isDarwin IOKit;
19   meta = with lib; {
20     homepage = "https://www.i-scream.org/libstatgrab/";
21     description = "Library that provides cross platforms access to statistics about the running system";
22     maintainers = [ ];
23     license = licenses.gpl2;
24     platforms = platforms.unix;
25   };