diff options
author | paulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com> | 2020-03-03 11:05:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 11:05:51 +0100 |
commit | 7c775a376ca17c06fd08a65ebe7a8937be02ed3c (patch) | |
tree | 7c12b732a589753769e78d53d2a5998f3939029f /ci/pronto/default.nix | |
parent | 9c1df04756bd900c1ab61e98526ad6eaac8a7216 (diff) | |
parent | 0e815dc35f57fb54ab4b0699961f4aa8148d310b (diff) | |
download | pronto-hlint-master.tar.gz pronto-hlint-master.tar.zst pronto-hlint-master.zip |
Fixing CI, bumping ruby and removing gem lock file
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 | } | ||