hurdPartedCross: Make overridable.
svn path=/nixpkgs/trunk/; revision=33630
This commit is contained in:
parent
5474f1e523
commit
c0172418ab
@ -1164,17 +1164,20 @@ let
|
|||||||
|
|
||||||
hurdPartedCross =
|
hurdPartedCross =
|
||||||
if crossSystem != null && crossSystem.config == "i586-pc-gnu"
|
if crossSystem != null && crossSystem.config == "i586-pc-gnu"
|
||||||
then (parted.override {
|
then (makeOverridable
|
||||||
# Needs the Hurd's libstore.
|
({ hurd }:
|
||||||
hurd = gnu.hurdCrossIntermediate;
|
(parted.override {
|
||||||
|
# Needs the Hurd's libstore.
|
||||||
|
inherit hurd;
|
||||||
|
|
||||||
# The Hurd wants a libparted.a.
|
# The Hurd wants a libparted.a.
|
||||||
enableStatic = true;
|
enableStatic = true;
|
||||||
|
|
||||||
gettext = null;
|
gettext = null;
|
||||||
readline = null;
|
readline = null;
|
||||||
devicemapper = null;
|
devicemapper = null;
|
||||||
}).hostDrv
|
}).hostDrv)
|
||||||
|
{ hurd = gnu.hurdCrossIntermediate; })
|
||||||
else null;
|
else null;
|
||||||
|
|
||||||
patch = gnupatch;
|
patch = gnupatch;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user