forked from mirrors/nixpkgs
knot-resolver: patch a possibly unpleasant issue
No more releasing in 2021.
This commit is contained in:
parent
ce5d933f41
commit
02d8ed2eb1
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl
|
{ lib, stdenv, fetchurl, fetchpatch
|
||||||
# native deps.
|
# native deps.
|
||||||
, runCommand, pkg-config, meson, ninja, makeWrapper
|
, runCommand, pkg-config, meson, ninja, makeWrapper
|
||||||
# build+runtime deps.
|
# build+runtime deps.
|
||||||
|
@ -26,6 +26,14 @@ unwrapped = stdenv.mkDerivation rec {
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch { # https://gitlab.nic.cz/knot/knot-resolver/-/merge_requests/1237
|
||||||
|
name = "console.aws.amazon.com-fix.patch";
|
||||||
|
url = "https://gitlab.nic.cz/knot/knot-resolver/-/commit/f4dabfbec9273703.diff";
|
||||||
|
sha256 = "3J+FDwNQ6CqIGo9pSzhrQZlHX99vXFDpPOBpwpCnOxs=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
# Path fixups for the NixOS service.
|
# Path fixups for the NixOS service.
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patch meson.build <<EOF
|
patch meson.build <<EOF
|
||||||
|
|
Loading…
Reference in a new issue