at v192 18 lines 559 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libstatgrab-0.91"; 5 6 src = fetchurl { 7 url = "http://ftp.i-scream.org/pub/i-scream/libstatgrab/${name}.tar.gz"; 8 sha256 = "1azinx2yzs442ycwq6p15skl3mscmqj7fd5hq7fckhjp92735s83"; 9 }; 10 11 meta = with stdenv.lib; { 12 homepage = http://www.i-scream.org/libstatgrab/; 13 description = "a library that provides cross platforms access to statistics about the running system"; 14 license = licenses.gpl2; 15 platforms = platforms.unix; 16 maintainers = with maintainers; [ wkennington ]; 17 }; 18}