Created
February 23, 2023 23:21
-
-
Save tatey/acdd8c4cd8d1c59558769ca48fd65ba1 to your computer and use it in GitHub Desktop.
Minimal shell.nix for Ruby on Rails
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
let | |
nixpkgs = | |
import (builtins.fetchTarball { | |
url = https://github.com/NixOS/nixpkgs/archive/f5dad40450d272a1ea2413f4a67ac08760649e89.tar.gz; # Pinned to unstable. Update by picking a SHA from https://status.nixos.org | |
}) { }; | |
in | |
nixpkgs.mkShell { | |
buildInputs = [ | |
nixpkgs.ruby_3_1 | |
nixpkgs.nodejs-18_x | |
nixpkgs.imagemagick | |
nixpkgs.libiconv | |
nixpkgs.libsass | |
nixpkgs.pkg-config | |
nixpkgs.postgresql_12 | |
nixpkgs.zlib | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment