mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-15 23:59:41 +01:00
19 lines
619 B
Nix
19 lines
619 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "dhall-bash-simple";
|
|
|
|
src = pkgs.fetchurl {
|
|
url = "https://github.com/dhall-lang/dhall-haskell/releases/download/1.25.0/dhall-bash-1.0.22-x86_64-linux.tar.bz2";
|
|
sha256 = "1849qacj6xk3ki8hyw3862jrabq2gp44sjay0r9iiygifzm51pk6";
|
|
};
|
|
|
|
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
|
|
'';
|
|
}
|