xintray/flake.nix

73 lines
1.9 KiB
Nix

{
description = "xintray: a status indicator that lives in the tray";
inputs.nixpkgs.url = "nixpkgs/nixos-22.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 {
packages = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
xintray = pkgs.buildGoModule {
pname = "xintray";
version = "v0.1.5";
src = ./.;
vendorSha256 =
"sha256-j/dpn2+a88ZzTXnQy3QpyTby37skQwkK4NG+aBeLeyc=";
proxyVendor = true;
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
];
};
});
defaultPackage = forAllSystems (system: self.packages.${system}.xintray);
devShells = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
default = pkgs.mkShell {
shellHook = ''
PS1='\u@\h:\@; '
echo "Go `${pkgs.go}/bin/go version`"
'';
buildInputs = with pkgs; [
git
go
gopls
go-tools
glfw
pkg-config
xorg.libXcursor
xorg.libXi
xorg.libXinerama
xorg.libXrandr
xorg.libXxf86vm
xorg.xinput
];
};
});
};
}