Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c5c366156c09
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a1bb64e79216
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 8, 2019

  1. bind: fix build on armv6l

    lopsided98 committed Jun 8, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    anthonyfok Anthony Fok
    Copy the full SHA
    b473f17 View commit details

Commits on Jun 9, 2019

  1. Copy the full SHA
    a1bb64e View commit details
Showing with 6 additions and 0 deletions.
  1. +6 −0 pkgs/servers/dns/bind/default.nix
6 changes: 6 additions & 0 deletions pkgs/servers/dns/bind/default.nix
Original file line number Diff line number Diff line change
@@ -23,6 +23,12 @@ stdenv.mkDerivation rec {
patches = [
./dont-keep-configure-flags.patch
./remove-mkdir-var.patch
# Fix build on armv6l
(fetchpatch {
url = "https://gitlab.isc.org/isc-projects/bind9/commit/f546769b8b1077a0ebfe270b8a283469ea3158d0.patch";
sha256 = "060f35lj6rr2qg7sy9pwy3946q2bsps4m9knmw15x6n6nmzvxrcv";
excludes = [ "CHANGES" ];
})
];

nativeBuildInputs = [ perl ];