Some checks reported errors
continuous-integration/drone/push Build encountered an error
The Drone tool completely ignores the environment key, because of course it does. It seems the CLI tool has been abandoned for feature parity here in favour of the built-in enterprise jsonnet parser, so guess we're doing this.
8 lines
90 B
Nix
8 lines
90 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.jsonnet
|
|
];
|
|
}
|