xatci/shell.nix

10 lines
266 B
Nix
Raw Normal View History

2020-04-27 14:38:00 +00:00
let
pkgs = import <nixpkgs> { };
nur = import (builtins.fetchTarball
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
in pkgs.mkShell {
2020-04-27 16:01:13 +00:00
buildInputs = with pkgs; with nur.repos.xe; [ go goimports gopls vgo2nix ];
2020-04-27 14:38:00 +00:00
}