Skip to content

Instantly share code, notes, and snippets.

@Strum355
Created July 16, 2022 16:52
Show Gist options
  • Save Strum355/f478df0ecd7d7726116ca5c59f3db13b to your computer and use it in GitHub Desktop.
Save Strum355/f478df0ecd7d7726116ca5c59f3db13b to your computer and use it in GitHub Desktop.
{
description = "SCIP index emitter CLI and Java compiler plugin for Java/Kotlin/Scala";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs =
nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
bazel_5
];
};
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment