kexec-tools 2.0.4 -> 2.0.9

This commit is contained in:
Tobias Geerinckx-Rice 2015-04-19 03:29:22 +02:00
parent fbeb8bd898
commit 63727ffcb2

View File

@ -1,18 +1,19 @@
{ stdenv, fetchurl, zlib }: { stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "kexec-tools-2.0.4"; name = "kexec-tools-2.0.9";
src = fetchurl { src = fetchurl {
url = "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz"; url = "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz";
sha256 = "1ikqm4w125h060dsvg9brri6ma51qn76mjjff6s1bss6sw0apxg5"; sha256 = "0wag8pxn13i0j91x2bszpmi5i88xnndcmqz1w5a0jdbnxff4mqwa";
}; };
buildInputs = [ zlib ]; buildInputs = [ zlib ];
meta = { meta = with stdenv.lib; {
homepage = http://horms.net/projects/kexec/kexec-tools; homepage = http://horms.net/projects/kexec/kexec-tools;
description = "Tools related to the kexec Linux feature"; description = "Tools related to the kexec Linux feature";
platforms = stdenv.lib.platforms.linux; platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
}; };
} }