10 lines
140 B
Nix
10 lines
140 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
unstable = import <unstable> {};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
go
|
|
];
|
|
}
|