nur-packages/shell.nix
xeals e460d4fcaf
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Build .drone.yml with jsonnet instead of drone
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.
2020-10-15 19:24:48 +11:00

8 lines
90 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.jsonnet
];
}