diff options
author | Paul Bonaud <paul.bonaud@fretlink.com> | 2019-04-14 19:42:39 +0200 |
---|---|---|
committer | Paul Bonaud <paul.bonaud@fretlink.com> | 2020-03-02 15:27:34 +0100 |
commit | 57dd8a22fc5b17b152fe68539debedecd01a93a8 (patch) | |
tree | c77e3b932a201edbb77bf3a66490f833a144e58f /ci/pronto/default.nix | |
parent | 9c1df04756bd900c1ab61e98526ad6eaac8a7216 (diff) | |
download | pronto-hlint-57dd8a22fc5b17b152fe68539debedecd01a93a8.tar.gz pronto-hlint-57dd8a22fc5b17b152fe68539debedecd01a93a8.tar.zst pronto-hlint-57dd8a22fc5b17b152fe68539debedecd01a93a8.zip |
ci: fix Nix environment to launch tests
Diffstat (limited to 'ci/pronto/default.nix')
-rw-r--r-- | ci/pronto/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ci/pronto/default.nix b/ci/pronto/default.nix new file mode 100644 index 0000000..fd668c9 --- /dev/null +++ b/ci/pronto/default.nix | |||
@@ -0,0 +1,10 @@ | |||
1 | { bundlerEnv, ruby, hlint }: | ||
2 | let gems = import ./gemset.nix; | ||
3 | in | ||
4 | bundlerEnv { | ||
5 | name = "pronto-${gems.pronto.version}"; | ||
6 | inherit ruby; | ||
7 | gemfile = ./Gemfile; | ||
8 | lockfile = ./Gemfile.lock; | ||
9 | gemset = ./gemset.nix; | ||
10 | } | ||