Skip to content

Commit

Permalink
chore: use pinned commit as input for backport
Browse files Browse the repository at this point in the history
  • Loading branch information
tie committed May 3, 2024
1 parent c38f5bf commit a7ab224
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

# Fix for https://github.com/NixOS/nixpkgs/issues/303193 is not in unstable
# channel yet.
nixpkgs-staging.url = "nixpkgs/staging";
# https://github.com/NixOS/nixpkgs/commit/dd8e61da4aadb1288e9db2ded077bb74628c28ac
nixpkgs-303193.url = "nixpkgs/dd8e61da4aadb1288e9db2ded077bb74628c28ac";

flake-parts.url = "flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
Expand Down
2 changes: 1 addition & 1 deletion nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
patchPath = "/pkgs/development/libraries/glibc/2.39-master.patch";
overridePatch = p: p.overrideAttrs (oldAttrs: {
patches = lib.remove (prev.path + patchPath) oldAttrs.patches ++ [
(inputs.nixpkgs-staging + patchPath)
(inputs.nixpkgs-303193 + patchPath)
];
});
in
Expand Down

0 comments on commit a7ab224

Please sign in to comment.