Skip to content

Commit

Permalink
Merge pull request #1263 from rohaquinlop/issue-1249
Browse files Browse the repository at this point in the history
feat(back): #1249 deprecate makerubyversion
  • Loading branch information
rohaquinlop authored Jan 11, 2024
2 parents 46c25da + c9d2da2 commit 43cfd2e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions makes/utils/makeRubyLock/main.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
__nixpkgs__,
makeRubyVersion,
makeScript,
...
}:
Expand All @@ -9,9 +8,9 @@ makeScript {
name = "make-ruby-lock";
replace = {
__argParser__ = ./parser.rb;
__argRuby31__ = makeRubyVersion "3.1";
__argRuby32__ = makeRubyVersion "3.2";
__argRuby33__ = makeRubyVersion "3.3";
__argRuby31__ = __nixpkgs__.ruby_3_1;
__argRuby32__ = __nixpkgs__.ruby_3_2;
__argRuby33__ = __nixpkgs__.ruby_3_3;
};
searchPaths.bin = [
__nixpkgs__.nixVersions.nix_2_15
Expand Down

0 comments on commit 43cfd2e

Please sign in to comment.