aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall-1.18.nix
diff options
context:
space:
mode:
authorpaulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com>2019-04-26 20:44:58 +0200
committerGitHub <noreply@github.com>2019-04-26 20:44:58 +0200
commit6bfc325c7b90a52dab15dd2ac624b4b9643d9d66 (patch)
treed26e1cf1a2752efdc197b505b6d9355e5702ca8e /dhall-1.18.nix
parent6bddf5f0c6d72a710323bdd641e2abf52973fa6a (diff)
parent89cd41776076edfbbfe8ffb874a4e92d496e3ad2 (diff)
downloadansible-clever-1.20.tar.gz
ansible-clever-1.20.tar.zst
ansible-clever-1.20.zip
Merge pull request #41 from paulrbr-fl/dhall-version-upgradev1.20
dhall(upgrade): upgrade code to be compatible with dhall 1.21.0
Diffstat (limited to 'dhall-1.18.nix')
-rw-r--r--dhall-1.18.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/dhall-1.18.nix b/dhall-1.18.nix
deleted file mode 100644
index d6522bd..0000000
--- a/dhall-1.18.nix
+++ /dev/null
@@ -1,16 +0,0 @@
1{ pkgs ? import <nixpkgs> {} }: with pkgs;
2
3stdenv.mkDerivation rec {
4 name = "dhall-${version}";
5 version = "1.18.0";
6 phases = [ "installPhase "];
7 src = fetchurl {
8 url = "https://github.com/dhall-lang/dhall-haskell/releases/download/${version}/dhall-${version}-x86_64-linux.tar.bz2";
9 sha256 = "0jvw6ss96xifb21mzpvfjzvaffcnpj0jhpc4rd36cl2r22800qgx";
10 };
11 installPhase = ''
12 mkdir -p $out/bin
13 tar -xjf $src
14 mv bin/dhall $out/bin/
15 '';
16}