this repo has no description
1{
2 description = "A Nix-flake-based Elixir development environment";
3
4 inputs = {
5 nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
6
7 flake-utils.url = "github:numtide/flake-utils";
8 };
9
10 outputs = { self, nixpkgs, flake-utils }:
11 flake-utils.lib.eachDefaultSystem (system:
12 let
13 inherit (pkgs.lib) optional optionals;
14
15 pkgs = import nixpkgs { inherit system; };
16 in
17 {
18 devShells.default = pkgs.mkShell {
19 buildInputs = with pkgs; [
20 libgccjit
21 go
22 golangci-lint
23 ];
24 };
25 }
26 );
27}