nixpkgs/pkgs/os-specific/linux/kexectools/default.nix

22 lines
574 B
Nix
Raw Normal View History

2013-09-11 14:51:02 +01:00
{ stdenv, fetchurl, zlib }:
2015-07-03 03:28:43 +01:00
let version = "2.0.10"; in
2013-09-11 14:51:02 +01:00
stdenv.mkDerivation rec {
2015-07-03 03:28:43 +01:00
name = "kexec-tools-${version}";
src = fetchurl {
2013-09-11 14:51:02 +01:00
url = "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz";
2015-07-03 03:28:43 +01:00
sha256 = "18x134nj37j1rshn5hxbyhdcv9kk5sfshs72alkip1icf54l2gp2";
};
2013-09-11 14:51:02 +01:00
buildInputs = [ zlib ];
2015-04-19 02:29:22 +01:00
meta = with stdenv.lib; {
2015-07-03 03:28:43 +01:00
inherit version;
2013-09-11 14:51:02 +01:00
homepage = http://horms.net/projects/kexec/kexec-tools;
description = "Tools related to the kexec Linux feature";
2015-04-19 02:29:22 +01:00
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}