dhall-lang / dhall-haskell

Maintainable configuration files
https://dhall-lang.org/
BSD 3-Clause "New" or "Revised" License
912 stars 213 forks source link

Package `dhall-nix` on Linux #2441

Closed Gabriella439 closed 2 years ago

Gabriella439 commented 2 years ago

This omission was caught by @amesgen in:

https://github.com/dhall-lang/dhall-haskell/pull/2399#issuecomment-1215640496

sjakobi commented 2 years ago

I think dhall-nixpkgs is also missing.

To fix the build failure in saltine, I think a step like this is required:

- name: Install libsodium
  run: |
    if [ '${{matrix.os.runner}}' == 'ubuntu-latest' ];
      sudo apt-get install -y libsodium-dev
    fi

(Adapted from https://stackoverflow.com/a/58002908/1013393.)