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

24 lines
621 B
Nix
Raw Normal View History

2013-09-11 13:51:02 +00:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
2015-07-03 02:28:43 +00:00
name = "kexec-tools-${version}";
2016-03-23 12:28:14 +00:00
version = "2.0.12";
src = fetchurl {
urls = [
"mirror://kernel/linux/utils/kernel/kexec/${name}.tar.xz"
"http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz"
];
2016-03-23 12:28:14 +00:00
sha256 = "03cj7w2l5fqn72xfhl4q6z0zbziwkp9bfn0gs7gaf9i44jv6gkhl";
};
2013-09-11 13:51:02 +00:00
buildInputs = [ zlib ];
2015-04-19 01:29:22 +00:00
meta = with stdenv.lib; {
2013-09-11 13:51:02 +00:00
homepage = http://horms.net/projects/kexec/kexec-tools;
description = "Tools related to the kexec Linux feature";
platforms = platforms.linux;
2015-04-19 01:29:22 +00:00
maintainers = with maintainers; [ nckx ];
};
}