devenv: fix build with lowdown 3.0

The devenv nix fork (2.32-based) uses LOWDOWN_TERM_NORELLINK which was
removed in lowdown 3.0. Apply the upstream compatibility patch via
applyPatches to avoid the +N version suffix that appendPatches adds,
which breaks devenv's nix-bindings-store build script.
This commit is contained in:
Philip Taron
2026-04-04 08:21:09 -07:00
parent 42d309324b
commit 68e77efe98
+22 -8
View File
@@ -2,6 +2,8 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
applyPatches,
gitMinimal,
makeBinaryWrapper,
installShellFiles,
@@ -27,18 +29,30 @@ let
devenvNixVersion = "2.32";
devenvNixRev = "e127c1c94cefe02d8ca4cca79ef66be4c527510e";
nix_components =
(nixVersions.nixComponents_git.overrideSource (fetchFromGitHub {
devenvNixSrc = applyPatches {
name = "devenv-nix-${devenvNixVersion}-source";
src = fetchFromGitHub {
owner = "cachix";
repo = "nix";
rev = devenvNixRev;
hash = "sha256-MRNVInSmvhKIg3y0UdogQJXe+omvKijGszFtYpd5r9k=";
})).overrideScope
(
finalScope: prevScope: {
version = devenvNixVersion;
}
);
};
patches = [
# Lowdown 3.0 compatibility; devenv's nix fork (2.32-based) predates
# the upstream fix.
(fetchpatch {
name = "nix-lowdown-3.0-support.patch";
url = "https://github.com/NixOS/nix/commit/472c35c561bd9e8db1465e0677f1efe2cb88c568.patch";
hash = "sha256-ZCQgI/euBN8t9rgdCsGRgrcEWG3T5MUc+bQc4tIcHuI=";
})
];
};
nix_components = (nixVersions.nixComponents_git.overrideSource devenvNixSrc).overrideScope (
finalScope: prevScope: {
version = devenvNixVersion;
}
);
in
rustPlatform.buildRustPackage {
pname = "devenv";