diff options
author | paulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com> | 2020-08-13 17:54:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-13 17:54:24 +0200 |
commit | f131496c3e23d30c30dd597ab734b0f771f4a4d9 (patch) | |
tree | 034b7aabaecd61229985c3346a75e4496f89743e /dhall-1.34.0.nix | |
parent | 25250c8c24a3c0b32c92eee5552ad7156115f03c (diff) | |
parent | d8c5e33f6015e3f17aaf5fd290b1834e6e6c1049 (diff) | |
download | ansible-kong-app-f131496c3e23d30c30dd597ab734b0f771f4a4d9.tar.gz ansible-kong-app-f131496c3e23d30c30dd597ab734b0f771f4a4d9.tar.zst ansible-kong-app-f131496c3e23d30c30dd597ab734b0f771f4a4d9.zip |
Merge pull request #19 from paulrbr-fl/dhall-1.33-compatv0.31
dhall: BREAKING CHANGE update dhall config for 1.33+ compatibility
Diffstat (limited to 'dhall-1.34.0.nix')
-rw-r--r-- | dhall-1.34.0.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dhall-1.34.0.nix b/dhall-1.34.0.nix new file mode 100644 index 0000000..a70d201 --- /dev/null +++ b/dhall-1.34.0.nix | |||
@@ -0,0 +1,22 @@ | |||
1 | { pkgs ? import <nixpkgs> {} }: with pkgs; | ||
2 | |||
3 | let | ||
4 | mkVersion = | ||
5 | version: sha256: | ||
6 | stdenv.mkDerivation { | ||
7 | name = "dhall-${version}"; | ||
8 | inherit version; | ||
9 | src = fetchurl { | ||
10 | url = "https://github.com/dhall-lang/dhall-haskell/releases/download/${version}/dhall-${version}-x86_64-linux.tar.bz2"; | ||
11 | inherit sha256; | ||
12 | }; | ||
13 | unpackPhase = '' | ||
14 | tar -xjf $src | ||
15 | ''; | ||
16 | installPhase = '' | ||
17 | mkdir -p $out/bin | ||
18 | mv bin/dhall $out/bin/ | ||
19 | ''; | ||
20 | }; | ||
21 | in | ||
22 | mkVersion "1.34.0" "0n64jkgbv7a3cmlv3gxpgc11p9b5w0k9nc0zm9am2pzmp6vm6b4n" | ||