We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9f8f84 commit 07ae556Copy full SHA for 07ae556
contrib/nix/ruby3.4-shell.nix
@@ -11,6 +11,17 @@ let
11
lockfile = ./Gemfile.lock;
12
gemset = ./gemset.nix;
13
gemConfig = pkgs.defaultGemConfig // {
14
+ rmail = attrs: {
15
+ dontBuild = false;
16
+ patches = [
17
+ # Frozen string literals: https://github.com/terceiro/rmail/pull/13
18
+ (pkgs.fetchpatch2 {
19
+ name = "rmail-frozen-string-literals.patch";
20
+ url = "https://github.com/terceiro/rmail/pull/13/commits/27f455af1fea0be0aa09959cc2237cbdf68de2a1.patch";
21
+ hash = "sha256-N5X9zix+WPoEugp2DBTu7dRDmesrF5pT/8Td2wraYoA=";
22
+ })
23
+ ];
24
+ };
25
# Workaround for Sup issue #623
26
ncursesw = attrs: pkgs.defaultGemConfig.ncursesw attrs // {
27
src = pkgs.fetchFromGitHub {
0 commit comments