Add dhall-docs-simple

This change sets the dhall-docs-simple attribute to install the dhall-docs cli.
This commit is contained in:
Tristan Cacqueray 2020-11-03 19:02:00 +00:00
parent 3e9101c5df
commit aa1dafc30d
2 changed files with 11 additions and 0 deletions

View File

@ -24,4 +24,8 @@
dhall-lsp-simple = import ./dhall-lsp-simple.nix {
inherit pkgs;
};
dhall-docs-simple = import ./dhall-docs-simple.nix {
inherit pkgs;
};
}

7
dhall-docs-simple.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> { } }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-docs-simple";
binNames = [ "dhall-docs" ];
attrName = "dhall-docs";
}