Merge pull request #35 from TristanCacqueray/master

Add dhall-docs-simple
This commit is contained in:
Profpatsch 2020-11-06 11:27:02 +01:00 committed by GitHub
commit 89d9a49aee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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";
}