mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-14 15:19:41 +01:00
9 lines
339 B
Nix
9 lines
339 B
Nix
{ pkgs ? import ./nixpkgs.nix { } }:
|
|
|
|
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
|
|
simpleName = "dhall-docs-simple";
|
|
binNames = [ "dhall-docs" ];
|
|
attrName = "dhall-docs";
|
|
# see https://github.com/dhall-lang/dhall-haskell/issues/2104
|
|
manPages = if pkgs.stdenv.isDarwin then [ "dhall-docs.1" ] else [];
|
|
}
|