mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-23 03:29:42 +01:00
b8267b1988
Use the `fetch.py` script to update to dhall 1.31 and add some instructions on how to do it.
28 lines
699 B
Nix
28 lines
699 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
let
|
|
release = import ./release.nix;
|
|
in
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "dhall-bash-simple";
|
|
|
|
src = if pkgs.stdenv.isDarwin
|
|
then pkgs.fetchurl {
|
|
url = release.dhall-bash-darwin.url;
|
|
sha256 = release.dhall-bash-darwin.hash;
|
|
}
|
|
else pkgs.fetchurl {
|
|
url = release.dhall-bash-linux.url;
|
|
sha256 = release.dhall-bash-linux.hash;
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
DHALL_TO_BASH=$out/bin/dhall-to-bash
|
|
install -D -m555 -T dhall-to-bash $DHALL_TO_BASH
|
|
|
|
mkdir -p $out/etc/bash_completion.d/
|
|
$DHALL_TO_BASH --bash-completion-script $DHALL_TO_BASH > $out/etc/bash_completion.d/dhall-to-bash-completion.bash
|
|
'';
|
|
}
|