]> git.immae.eu Git - github/fretlink/ansible-clever.git/commitdiff
dhall: upgrade minimum compatible Dhall version to at least 1.29.0 78/head
authorPaul Bonaud <paul.bonaud@fretlink.com>
Tue, 8 Dec 2020 10:28:45 +0000 (11:28 +0100)
committerPaul Bonaud <paul.bonaud@fretlink.com>
Tue, 8 Dec 2020 10:34:17 +0000 (11:34 +0100)
This commit also upgrades the nix channel used in the CI to be able to
test with Dhall v1.34.0

.travis.yml
README.md
default.nix

index e42204f9257fbf295126d64ca1e6e044ffe5845d..31c3ecf49469fc8403430144f54fa94a0d60af52 100644 (file)
@@ -2,7 +2,7 @@
 language: nix
 nix: 2.3.4
 env:
-  - CUSTOM_NIX_PATH=nixpkgs=channel:nixos-20.03
+  - CUSTOM_NIX_PATH=nixpkgs=channel:nixos-20.09
 
 # Travis nix integration will install nix AFTER the environment variables are set
 # and the nix installer will overide NIX_PATH variable thus we need to re-export it
index 499dced1836aa25c5b50c797fd0e6ffa377f741b..c7d7415eeb826c5c774d89f135c54ab5abb91107 100644 (file)
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Requirements
 
 This role requires [`clever-tools`](https://github.com/CleverCloud/clever-tools) CLI version `2.6.1` or higher.
 
-If you want to configure this role with [Dhall](https://dhall-lang.org/) instead of YAML, the role publishes dhall bindings defined in the `dhall/package.dhall` file. These bindings will need Dhall version `1.26.0` or higher.
+If you want to configure this role with [Dhall](https://dhall-lang.org/) instead of YAML, the role publishes dhall bindings defined in the `dhall/package.dhall` file. These bindings will need Dhall version `1.29.0` or higher.
 
 Role Variables
 --------------
index 15ee01ea5bbab7d5e0e9bfa0cb8fb208122fb409..d68a922c69caf84a29a692a54aa983fb62b2a31d 100644 (file)
@@ -3,9 +3,8 @@
 with pkgs;
 {
   inherit shellcheck
-          ansible_2_8;
-  inherit (python37Packages)
+          ansible_2_8
+          dhall;
+  inherit (python3Packages)
           ansible-lint;
-  inherit (haskellPackages)
-          dhall_1_27_0;
 }