libstatgrab: Add package
This commit is contained in:
parent
ed76e77806
commit
2ae3cc7ef4
18
pkgs/development/libraries/libstatgrab/default.nix
Normal file
18
pkgs/development/libraries/libstatgrab/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user