From c43aa42b876aaebcf60b1f859081eae21de0ddc1 Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Wed, 21 Aug 2019 00:05:51 +0200 Subject: [PATCH] shell Nix pour les outils Ruby gems --- shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..4967cac --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +with import {}; +stdenv.mkDerivation { + name = "env"; + buildInputs = [ + ruby.devEnv + bundix + ]; +}