summary refs log tree commit diff
path: root/pkgs/os-specific/linux/mdadm/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-01-20 10:00:35 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-01-20 10:24:52 +0100
commitf90e5ae3ba6214f712acd73d653ff5a323f4e5a4 (patch)
treec046bd744d86c02bb218591147e6ec39604425bf /pkgs/os-specific/linux/mdadm/default.nix
parent716aac2519a7571e7f5fd984a886d579a4a051c5 (diff)
downloadnixpkgs-f90e5ae3ba6214f712acd73d653ff5a323f4e5a4.tar
nixpkgs-f90e5ae3ba6214f712acd73d653ff5a323f4e5a4.tar.gz
nixpkgs-f90e5ae3ba6214f712acd73d653ff5a323f4e5a4.tar.bz2
nixpkgs-f90e5ae3ba6214f712acd73d653ff5a323f4e5a4.tar.lz
nixpkgs-f90e5ae3ba6214f712acd73d653ff5a323f4e5a4.tar.xz
nixpkgs-f90e5ae3ba6214f712acd73d653ff5a323f4e5a4.tar.zst
nixpkgs-f90e5ae3ba6214f712acd73d653ff5a323f4e5a4.zip
mdadm: fixup build with multiple-outputs
Needed after 011c149ed5e5.
Diffstat (limited to 'pkgs/os-specific/linux/mdadm/default.nix')
-rw-r--r--pkgs/os-specific/linux/mdadm/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/mdadm/default.nix b/pkgs/os-specific/linux/mdadm/default.nix
index dc1697b9e9b..128f0d1aafc 100644
--- a/pkgs/os-specific/linux/mdadm/default.nix
+++ b/pkgs/os-specific/linux/mdadm/default.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
 
   # This is to avoid self-references, which causes the initrd to explode
   # in size and in turn prevents mdraid systems from booting.
-  allowedReferences = [ stdenv.glibc ];
+  allowedReferences = [ stdenv.glibc.out ];
 
   patches = [ ./no-self-references.patch ];