From 72fa40f72ddaff7042846a435d019804474c3d54 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Tue, 29 May 2018 13:06:17 -0400 Subject: [PATCH] lib: Fix `nix-env -qaP -f . --xml --meta` A merge undid my fix in d437f2c365a12fb3894eb87f52decf53c745f475. --- lib/systems/for-meta.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/systems/for-meta.nix b/lib/systems/for-meta.nix index d545bcbeb7d3..96e8b6f86eb0 100644 --- a/lib/systems/for-meta.nix +++ b/lib/systems/for-meta.nix @@ -22,9 +22,9 @@ in rec { freebsd = [ patterns.isFreeBSD ]; # Should be better, but MinGW is unclear, and HURD is bit-rotted. gnu = [ - { kernel = parse.kernels.linux; abi = parse.abis.gnu; } - { kernel = parse.kernels.linux; abi = parse.abis.gnueabi; } - { kernel = parse.kernels.linux; abi = parse.abis.gnueabihf; } + { kernel = parse.kernels.linux; abi = abis.gnu; } + { kernel = parse.kernels.linux; abi = abis.gnueabi; } + { kernel = parse.kernels.linux; abi = abis.gnueabihf; } ]; illumos = [ patterns.isSunOS ]; linux = [ patterns.isLinux ];