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