test template

This commit is contained in:
Aaron Bieber 2022-09-06 13:49:01 -06:00
parent 3d84c6cb6e
commit b8501165f0
No known key found for this signature in database
3 changed files with 48 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

42
templates/go/flake.nix Normal file
View File

@ -0,0 +1,42 @@
{
description = "thing: stuff and things";
inputs.nixpkgs.url = "nixpkgs/nixos-21.11";
outputs = { self, nixpkgs }:
let
lastModifiedDate =
self.lastModifiedDate or self.lastModified or "19700101";
version = builtins.substring 0 8 lastModifiedDate;
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";
inherit version;
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:\@; '
'';
nativeBuildInputs = with pkgs; [ git go gopls go-tools ];
};
});
};
}