1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "sysfsutils-2.1.0";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/linux-diag/${name}.tar.gz";
8 sha256 = "e865de2c1f559fff0d3fc936e660c0efaf7afe662064f2fb97ccad1ec28d208a";
9 };
10
11 meta = {
12 homepage = http://linux-diag.sourceforge.net/Sysfsutils.html;
13 longDescription =
14 ''
15 These are a set of utilites built upon sysfs, a new virtual
16 filesystem in Linux kernel versions 2.5+ that exposes a system's
17 device tree.
18 '';
19 license = with stdenv.lib.licenses; [ gpl2 lgpl21 ];
20 platforms = stdenv.lib.platforms.linux;
21 };
22}