at v206 21 lines 574 B view raw
1{ stdenv, fetchurl, zlib }: 2 3let version = "2.0.10"; in 4stdenv.mkDerivation rec { 5 name = "kexec-tools-${version}"; 6 7 src = fetchurl { 8 url = "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz"; 9 sha256 = "18x134nj37j1rshn5hxbyhdcv9kk5sfshs72alkip1icf54l2gp2"; 10 }; 11 12 buildInputs = [ zlib ]; 13 14 meta = with stdenv.lib; { 15 inherit version; 16 homepage = http://horms.net/projects/kexec/kexec-tools; 17 description = "Tools related to the kexec Linux feature"; 18 platforms = with platforms; linux; 19 maintainers = with maintainers; [ nckx ]; 20 }; 21}