templates: add go-fyne
This commit is contained in:
parent
e8e1d38ceb
commit
f062c93deb
1
templates/go-fyne/.envrc
Normal file
1
templates/go-fyne/.envrc
Normal file
@ -0,0 +1 @@
|
||||
use flake
|
4
templates/go-fyne/.gitignore
vendored
Normal file
4
templates/go-fyne/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
.direnv
|
||||
*.bak
|
||||
result
|
||||
tags
|
15
templates/go-fyne/LICENSE
Normal file
15
templates/go-fyne/LICENSE
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (c) 2022 Aaron Bieber <aaron@bolddaemon.com>
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
93
templates/go-fyne/flake.nix
Normal file
93
templates/go-fyne/flake.nix
Normal file
@ -0,0 +1,93 @@
|
||||
{
|
||||
description = "thing: stuff and things";
|
||||
|
||||
inputs.nixpkgs.url = "nixpkgs/nixos-23.11";
|
||||
|
||||
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 = with pkgs; pkgs.buildGoModule {
|
||||
pname = "thing";
|
||||
version = "v0.0.0";
|
||||
src = ./.;
|
||||
|
||||
vendorHash = pkgs.lib.fakeSha256;
|
||||
|
||||
nativeBuildInputs = [ pkg-config copyDesktopItems ];
|
||||
buildInputs = [
|
||||
glfw
|
||||
libGL
|
||||
libGLU
|
||||
openssh
|
||||
pkg-config
|
||||
glibc
|
||||
xorg.libXcursor
|
||||
xorg.libXi
|
||||
xorg.libXinerama
|
||||
xorg.libXrandr
|
||||
xorg.libXxf86vm
|
||||
xorg.xinput
|
||||
];
|
||||
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
name = "traygent";
|
||||
exec = pname;
|
||||
icon = pname;
|
||||
desktopName = pname;
|
||||
})
|
||||
];
|
||||
};
|
||||
});
|
||||
|
||||
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`"
|
||||
'';
|
||||
buildInputs = with pkgs; [
|
||||
git
|
||||
go_1_21
|
||||
gopls
|
||||
go-tools
|
||||
glxinfo
|
||||
|
||||
glfw
|
||||
glibc
|
||||
pkg-config
|
||||
xorg.libXcursor
|
||||
xorg.libXi
|
||||
xorg.libXinerama
|
||||
xorg.libXrandr
|
||||
xorg.libXxf86vm
|
||||
xorg.xinput
|
||||
graphviz
|
||||
|
||||
go-font
|
||||
];
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user