diff options
author | Ralph Amissah <ralph@amissah.com> | 2022-04-28 12:21:24 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2022-04-28 12:21:24 -0400 |
commit | 70d190dd7c1f13270e5acac8ec64e113b917ec8d (patch) | |
tree | 70b2c52aaad12ca1ff85f3c2c10284060cc05144 /nix/pkglst | |
parent | debian/changelog (7.2.0-1) (diff) | |
parent | project config minor, also .gitignore (diff) |
Merge tag 'sisu_7.2.1' into debian
SiSU 7.2.1
Diffstat (limited to 'nix/pkglst')
-rw-r--r-- | nix/pkglst/packages_ruby_2_6.nix | 17 | ||||
-rw-r--r-- | nix/pkglst/packages_ruby_3_0.nix | 17 | ||||
-rw-r--r-- | nix/pkglst/packages_ruby_3_1.nix | 17 |
3 files changed, 51 insertions, 0 deletions
diff --git a/nix/pkglst/packages_ruby_2_6.nix b/nix/pkglst/packages_ruby_2_6.nix new file mode 100644 index 00000000..f8f27323 --- /dev/null +++ b/nix/pkglst/packages_ruby_2_6.nix @@ -0,0 +1,17 @@ +{ pkgs ? import <nixpkgs> {} }: +with pkgs; [ + ruby_2_6 + rubyPackages_2_6.rake + rubyPackages_2_6.sqlite3 + rubyPackages_2_6.thor + sqlite + unzip + xz + zip + openssl + #texlive-combined-full + nixFlakes + validatePkgConfig + jq + git +] diff --git a/nix/pkglst/packages_ruby_3_0.nix b/nix/pkglst/packages_ruby_3_0.nix new file mode 100644 index 00000000..66c9e0ba --- /dev/null +++ b/nix/pkglst/packages_ruby_3_0.nix @@ -0,0 +1,17 @@ +{ pkgs ? import <nixpkgs> {} }: +with pkgs; [ + ruby_3_0 + rubyPackages_3_0.rake + rubyPackages_3_0.sqlite3 + rubyPackages_3_0.thor + sqlite + unzip + xz + zip + openssl + #texlive-combined-full + nixFlakes + validatePkgConfig + jq + git +] diff --git a/nix/pkglst/packages_ruby_3_1.nix b/nix/pkglst/packages_ruby_3_1.nix new file mode 100644 index 00000000..ca9ced14 --- /dev/null +++ b/nix/pkglst/packages_ruby_3_1.nix @@ -0,0 +1,17 @@ +{ pkgs ? import <nixpkgs> {} }: +with pkgs; [ + ruby_3_1 + rubyPackages_3_1.rake + rubyPackages_3_1.sqlite3 + rubyPackages_3_1.thor + sqlite + unzip + xz + zip + openssl + #texlive-combined-full + nixFlakes + validatePkgConfig + jq + git +] |