shell Nix pour les outils Ruby gems

This commit is contained in:
Yves Dubromelle
2019-08-21 00:05:51 +02:00
parent 962854ff30
commit c43aa42b87

8
shell.nix Normal file
View File

@@ -0,0 +1,8 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
ruby.devEnv
bundix
];
}