libstatgrab: Add package

This commit is contained in:
William A. Kennington III 2014-10-08 01:27:15 -07:00
parent ed76e77806
commit 2ae3cc7ef4
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libstatgrab-0.91";
src = fetchurl {
url = "http://ftp.i-scream.org/pub/i-scream/libstatgrab/${name}.tar.gz";
sha256 = "1azinx2yzs442ycwq6p15skl3mscmqj7fd5hq7fckhjp92735s83";
};
meta = with stdenv.lib; {
homepage = http://www.i-scream.org/libstatgrab/;
description = "a library that provides cross platforms access to statistics about the running system";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}

View File

@ -5862,6 +5862,8 @@ let
libspatialite = callPackage ../development/libraries/libspatialite { };
libstatgrab = callPackage ../development/libraries/libstatgrab { };
libtar = callPackage ../development/libraries/libtar { };
libtasn1 = callPackage ../development/libraries/libtasn1 { };