about summary refs log tree commit diff
path: root/overlays/patches/emacs/rust-mode/default.nix
blob: 01bfffb425792d40cf964ff51b30d99047444f4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ rust-mode, fetchpatch }:

rust-mode.overrideAttrs ({ patches ? [], ... }: {
  patches = patches ++ [
    (fetchpatch {
      url = "https://github.com/rust-lang/rust-mode/commit/eca22f13e751bb4b1468192e0c92c6289f2cbeb4.patch";
      sha256 = "1fg8vicq6ay88x9hjxah9mq6ily4ry8lh1jfpm3njrpjy63cix8j";
    })
  ];
})