Merge branch 'templates'
This commit is contained in:
commit
00c13b3b77
@ -164,5 +164,10 @@
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
templates."go" = {
|
||||
path = ./templates/go;
|
||||
description = "Go template.";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
1
templates/go/.envrc
Normal file
1
templates/go/.envrc
Normal file
@ -0,0 +1 @@
|
||||
use flake
|
40
templates/go/flake.nix
Normal file
40
templates/go/flake.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
description = "thing: stuff and things";
|
||||
|
||||
inputs.nixpkgs.url = "nixpkgs/nixos-21.11";
|
||||
|
||||
outputs = { self, nixpkgs }:
|
||||
let
|
||||
supportedSystems =
|
||||
[ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
|
||||
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
||||
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
|
||||
in {
|
||||
packages = forAllSystems (system:
|
||||
let pkgs = nixpkgsFor.${system};
|
||||
in {
|
||||
thing = pkgs.buildGoModule {
|
||||
pname = "thing";
|
||||
version = "v0.0.0";
|
||||
src = ./.;
|
||||
|
||||
vendorSha256 = pkgs.lib.fakeSha256;
|
||||
proxyVendor = true;
|
||||
};
|
||||
});
|
||||
|
||||
defaultPackage = forAllSystems (system: self.packages.${system}.pnix);
|
||||
devShells = forAllSystems (system:
|
||||
let pkgs = nixpkgsFor.${system};
|
||||
in {
|
||||
default = pkgs.mkShell {
|
||||
shellHook = ''
|
||||
PS1='\u@\h:\@; '
|
||||
echo "Go `${pkgs.go}/bin/go version`"
|
||||
'';
|
||||
nativeBuildInputs = with pkgs; [ git go gopls go-tools ];
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user