Skip to content

Commit

Permalink
kexectools: fix build on i686
Browse files Browse the repository at this point in the history
  • Loading branch information
worldofpeace committed Sep 10, 2019
1 parent 41ad32f commit dc051df
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pkgs/os-specific/linux/kexectools/default.nix
@@ -1,4 +1,4 @@
{ stdenv, buildPackages, fetchurl, zlib }:
{ stdenv, buildPackages, fetchurl, zlib, fetchpatch }:

stdenv.mkDerivation rec {
pname = "kexec-tools";
Expand All @@ -18,6 +18,16 @@ stdenv.mkDerivation rec {
depsBuildBuild = [ buildPackages.stdenv.cc ];
buildInputs = [ zlib ];

patches = [
# fix build on i686
# See: https://src.fedoraproject.org/rpms/kexec-tools/c/cb1e5463b5298b064e9b6c86ad6fe3505fec9298
(fetchpatch {
name = "kexec-tools-2.0.20-fix-broken-multiboot2-buliding-for-i386.patch";
url = "https://src.fedoraproject.org/rpms/kexec-tools/raw/cb1e5463b5298b064e9b6c86ad6fe3505fec9298/f/kexec-tools-2.0.20-fix-broken-multiboot2-buliding-for-i386.patch";
sha256 = "1kzmcsbhwfdgxlc5s88ir0n494phww1j16yk0z42x09qlkxxkg0l";
})
];

meta = with stdenv.lib; {
homepage = http://horms.net/projects/kexec/kexec-tools;
description = "Tools related to the kexec Linux feature";
Expand Down

0 comments on commit dc051df

Please sign in to comment.