test template
This commit is contained in:
parent
3d84c6cb6e
commit
b8501165f0
@ -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
|
42
templates/go/flake.nix
Normal file
42
templates/go/flake.nix
Normal 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 ];
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user