43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{
|
|
description = "thing: stuff and things";
|
|
|
|
inputs.nixpkgs.url = "nixpkgs/nixos-23.05";
|
|
|
|
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 {
|
|
overlay = _: prev: { inherit (self.packages.${prev.system}) thing; };
|
|
|
|
packages = forAllSystems (system:
|
|
let pkgs = nixpkgsFor.${system};
|
|
in {
|
|
thing = pkgs.buildGoModule {
|
|
pname = "thing";
|
|
version = "v0.0.0";
|
|
src = ./.;
|
|
|
|
vendorHash = pkgs.lib.fakeSha256;
|
|
};
|
|
});
|
|
|
|
defaultPackage = forAllSystems (system: self.packages.${system}.thing);
|
|
devShells = forAllSystems (system:
|
|
let pkgs = nixpkgsFor.${system};
|
|
in {
|
|
default = pkgs.mkShell {
|
|
shellHook = ''
|
|
PS1='\u@\h:\@; '
|
|
nix flake run github:qbit/xin#flake-warn
|
|
echo "Go `${pkgs.go}/bin/go version`"
|
|
'';
|
|
nativeBuildInputs = with pkgs; [ git go gopls go-tools ];
|
|
};
|
|
});
|
|
};
|
|
}
|
|
|