mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 00:35:25 +03:00
e32856ecf4
* Introduce shell.nix to expose the Nix tooling, if required. * dev-env: Rewrite the ghcide script to use nix-shell. * language-support/hs: Use `nix-shell` for export-package.sh. * Nix: Add a shebang to the Bazel wrapper script. CHANGELOG_BEGIN CHANGELOG_END * dev-env: Standardize the `set` header in `ghcide`.
7 lines
202 B
Nix
7 lines
202 B
Nix
{ pkgs ? import ./nix/nixpkgs.nix { }
|
|
, default ? import ./nix/default.nix { inherit pkgs; }
|
|
}:
|
|
pkgs.mkShell {
|
|
buildInputs = pkgs.lib.attrsets.mapAttrsToList (name: value: value) default.toolAttrs;
|
|
}
|