Unverified Commit 5a931a17 authored by Maximilian Bosch's avatar Maximilian Bosch Committed by GitHub
Browse files

Merge: bind.dnsutils: remove reference to main output (#382577)

parents 64210906 3bf4b696
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  stdenv,
  lib,
  fetchurl,
  removeReferencesTo,
  darwin,
  perl,
  pkg-config,
@@ -49,6 +50,7 @@ stdenv.mkDerivation (finalAttrs: {
  nativeBuildInputs = [
    perl
    pkg-config
    removeReferencesTo
  ];
  buildInputs =
    [
@@ -128,6 +130,10 @@ stdenv.mkDerivation (finalAttrs: {
      sed -i '/^ISC_TEST_ENTRY(tcpdns_recv_one/d' tests/isc/netmgr_test.c
    '';

  postFixup = ''
    remove-references-to -t "$out" "$dnsutils/bin/delv"
  '';

  passthru = {
    tests = {
      withCheck = finalAttrs.finalPackage.overrideAttrs { doCheck = true; };