Merge branch 'templates'

This commit is contained in:
Aaron Bieber 2022-09-09 08:24:42 -06:00
commit 00c13b3b77
No known key found for this signature in database
3 changed files with 46 additions and 0 deletions

View File

@ -164,5 +164,10 @@
];
};
};
templates."go" = {
path = ./templates/go;
description = "Go template.";
};
};
}

1
templates/go/.envrc Normal file
View File

@ -0,0 +1 @@
use flake

40
templates/go/flake.nix Normal file
View 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 ];
};
});
};
}