xin/templates/fyne/flake.nix

81 lines
2.0 KiB
Nix
Raw Normal View History

2023-05-31 22:18:54 -06:00
{
description = "thing: stuff and things";
inputs.nixpkgs.url = "nixpkgs/nixos-24.05";
2023-05-31 22:18:54 -06:00
2023-09-12 08:44:05 -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
{
overlay = _: prev: { inherit (self.packages.${prev.system}) thing; };
2023-05-31 22:18:54 -06:00
2023-09-12 08:44:05 -06:00
packages = forAllSystems (system:
let
pkgs = nixpkgsFor.${system};
in
{
thing = pkgs.buildGoModule {
pname = "thing";
version = "v0.0.0";
src = ./.;
2023-05-31 22:18:54 -06:00
2023-09-12 08:44:05 -06:00
vendorHash = pkgs.lib.fakeSha256;
proxyVendor = true;
2023-05-31 22:18:54 -06:00
2023-09-12 08:44:05 -06:00
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [
git
glfw
libGL
libGLU
openssh
pkg-config
xorg.libXcursor
xorg.libXi
xorg.libXinerama
xorg.libXrandr
xorg.libXxf86vm
xorg.xinput
];
};
});
2023-05-31 22:18:54 -06:00
2023-09-12 08:44:05 -06:00
defaultPackage = forAllSystems (system: self.packages.${system}.thing);
devShells = forAllSystems (system:
let
pkgs = nixpkgsFor.${system};
in
{
default = pkgs.mkShell {
shellHook = ''
PS1='\u@\h:\@; '
nix run github:qbit/xin#flake-warn
2023-09-12 08:44:05 -06:00
echo "Go `${pkgs.go}/bin/go version`"
'';
buildInputs = with pkgs; [
git
go_1_20
gopls
go-tools
2023-05-31 22:18:54 -06:00
2023-09-12 08:44:05 -06:00
glfw
pkg-config
xorg.libXcursor
xorg.libXi
xorg.libXinerama
xorg.libXrandr
xorg.libXxf86vm
xorg.xinput
];
};
});
};
2023-05-31 22:18:54 -06:00
}