this repo has no description
1{
2 description = "A Nix-flake-based Golang 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 go
21 hurl
22 just
23 jq
24 ];
25 };
26 }
27 );
28}