1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-23 04:56:28 +02:00
github.com_the-nix-way_dev-.../ruby/flake.nix
2022-10-12 16:42:34 -05:00

33 lines
647 B
Nix

{
description = "A Nix-flake-based Ruby development environment";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs";
};
outputs =
{ self
, flake-utils
, nixpkgs
}:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [
(self: super: {
ruby = super.ruby_3_1;
})
];
pkgs = import nixpkgs { inherit overlays system; };
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ ruby ];
shellHook = ''
${pkgs.ruby}/bin/ruby --version
'';
};
});
}