xin/templates/go/flake.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

2022-09-06 13:49:01 -06:00
{
description = "thing: stuff and things";
2023-01-23 17:43:57 -07:00
inputs.nixpkgs.url = "nixpkgs/nixos-22.11";
2022-09-06 13:49:01 -06:00
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 {
2023-03-22 10:35:46 -06:00
overlay = _: prev: { inherit (self.packages.${prev.system}) thing; };
2023-01-31 12:55:24 -07:00
2022-09-06 13:49:01 -06:00
packages = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
thing = pkgs.buildGoModule {
pname = "thing";
2022-09-06 17:59:05 -06:00
version = "v0.0.0";
2022-09-06 13:49:01 -06:00
src = ./.;
vendorSha256 = pkgs.lib.fakeSha256;
proxyVendor = true;
};
});
2022-09-19 07:38:46 -06:00
defaultPackage = forAllSystems (system: self.packages.${system}.thing);
2022-09-06 13:49:01 -06:00
devShells = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
default = pkgs.mkShell {
shellHook = ''
PS1='\u@\h:\@; '
2022-09-06 17:59:05 -06:00
echo "Go `${pkgs.go}/bin/go version`"
2022-09-06 13:49:01 -06:00
'';
nativeBuildInputs = with pkgs; [ git go gopls go-tools ];
};
});
};
}