easy-dhall-nix/dhall-text-simple.nix
2019-06-02 09:22:00 +02:00

20 lines
619 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation rec {
name = "dhall-text-simple";
src = pkgs.fetchurl {
url = "https://github.com/dhall-lang/dhall-haskell/releases/download/1.23.0/dhall-text-1.0.17-x86_64-linux.tar.bz2";
sha256 = "0hcfwyig6c1wvyqahmyhb5xkrb4vay2z6vlc1r9is8lbq65n9wyd";
};
installPhase = ''
mkdir -p $out/bin
DHALL_TO_TEXT=$out/bin/dhall-to-text
install -D -m555 -T dhall-to-text $DHALL_TO_TEXT
mkdir -p $out/etc/bash_completion.d/
$DHALL_TO_TEXT --bash-completion-script $DHALL_TO_TEXT > $out/etc/bash_completion.d/dhall-to-text-completion.bash
'';
}