Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 29 lines 670 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "sysfsutils"; 9 version = "2.1.0"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/linux-diag/sysfsutils-${version}.tar.gz"; 13 sha256 = "e865de2c1f559fff0d3fc936e660c0efaf7afe662064f2fb97ccad1ec28d208a"; 14 }; 15 16 meta = { 17 homepage = "https://linux-diag.sourceforge.net/Sysfsutils.html"; 18 longDescription = '' 19 These are a set of utilites built upon sysfs, a new virtual 20 filesystem in Linux kernel versions 2.5+ that exposes a system's 21 device tree. 22 ''; 23 license = with lib.licenses; [ 24 gpl2Plus 25 lgpl21 26 ]; 27 platforms = lib.platforms.linux; 28 }; 29}