diff options
author | Paul Bonaud <paul.bonaud@fretlink.com> | 2020-06-19 17:37:16 +0200 |
---|---|---|
committer | Paul Bonaud <paul.bonaud@fretlink.com> | 2020-06-22 15:40:01 +0200 |
commit | 3d17c5eb5948d7297112599a9ea852b5853b3260 (patch) | |
tree | f61e2238d3327073a6bae436cc63fcc36065b9cc /default.nix | |
parent | e6428dceebd07b90c01b8d187a16db9772cbfdff (diff) | |
download | ansible-clever-3d17c5eb5948d7297112599a9ea852b5853b3260.tar.gz ansible-clever-3d17c5eb5948d7297112599a9ea852b5853b3260.tar.zst ansible-clever-3d17c5eb5948d7297112599a9ea852b5853b3260.zip |
core: define nix env for travis with a unique default.nix file
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..15ee01e --- /dev/null +++ b/default.nix | |||
@@ -0,0 +1,11 @@ | |||
1 | { pkgs ? import <nixpkgs> {} }: | ||
2 | |||
3 | with pkgs; | ||
4 | { | ||
5 | inherit shellcheck | ||
6 | ansible_2_8; | ||
7 | inherit (python37Packages) | ||
8 | ansible-lint; | ||
9 | inherit (haskellPackages) | ||
10 | dhall_1_27_0; | ||
11 | } | ||