Last active
January 5, 2024 18:51
-
-
Save badboy/600e39fbf6c1a45c58298efcd367aa5f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "An old Ruby application"; | |
nixConfig = { | |
extra-substituters = "https://nixpkgs-ruby.cachix.org"; | |
extra-trusted-public-keys = | |
"nixpkgs-ruby.cachix.org-1:vrcdi50fTolOxWCZZkw0jakOnUI1T19oYJ+PRYdK4SM="; | |
}; | |
inputs = { | |
nixpkgs.url = "nixpkgs"; | |
ruby-nix = { | |
url = "github:inscapist/ruby-nix"; | |
inputs.nixpkgs.follows = "nixpkgs"; | |
}; | |
fu.url = "github:numtide/flake-utils"; | |
bob-ruby = { | |
url = "github:bobvanderlinden/nixpkgs-ruby"; | |
inputs.nixpkgs.follows = "nixpkgs"; | |
}; | |
}; | |
outputs = { self, nixpkgs, fu, ruby-nix, bob-ruby }: | |
with fu.lib; | |
eachDefaultSystem (system: | |
let | |
pkgs = import nixpkgs { | |
inherit system; | |
overlays = [ bob-ruby.overlays.default ]; | |
}; | |
rubyNix = ruby-nix.lib pkgs; | |
ruby = pkgs."ruby-2.7.8"; | |
in rec { | |
inherit (rubyNix { | |
inherit ruby; | |
name = "old-ruby-app"; | |
}) | |
env; | |
devShells = rec { | |
default = dev; | |
dev = pkgs.mkShell { | |
buildInputs = [ env ]; | |
}; | |
}; | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
maxfd = fdlim_get(1); | |
if (maxfd < 0) | |
fatal("%s: fdlim_get: bad value", __progname); | |
/* Maximum number of file descriptors available */ | |
#ifdef HAVE_SYSCONF | |
# define SSH_SYSFDMAX sysconf(_SC_OPEN_MAX) | |
#else | |
# define SSH_SYSFDMAX 10000 | |
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[dependencies] | |
redis = "0.11.0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment