Skip to content

Commit

Permalink
bump release
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolakovics committed Nov 8, 2024
1 parent e842394 commit 054125f
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 1 deletion.
62 changes: 62 additions & 0 deletions .null-ls_814785_shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{ pkgs ? import <nixpkgs> {} }:
# with import <nixpkgs> {
# crossSystem = {
# config = "x86_64-w64-mingw32";
# };
# };
# let
# # pkgs = (import <nixpkgs>{ crossSystem = {config = "x86_64-w64-mingw32";}; });
# pkgs = import <nixpkgs> {
# localSystem = "x86_64-linux"; # buildPlatform
# crossSystem = "x86_64-w64-mingw32"; # Note the `config` part!
# };
# in
pkgs.mkShell {
buildInputs = with pkgs; [
go
gotools
gopls
go-outline
gopls
gopkgs
godef
golint
delve
pkg-config
clang
pkg-config
glib
cairo
pango
gdk-pixbuf
atk
ffmpeg
# linux
wayland
wayland-protocols
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
xorg.libXinerama
libxkbcommon
libGL
mesa
# windows
];

shellHook = ''
export LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath [
pkgs.wayland
pkgs.libGL
pkgs.xorg.libX11
pkgs.xorg.libXcursor
pkgs.xorg.libXi
pkgs.xorg.libXrandr
pkgs.libxkbcommon
]}:$LD_LIBRARY_PATH
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
export CGO_ENABLED=1
'';
}
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
const (
owner = "dpolakovics"
repo = "soundscape-sync"
currentTag = "v0.6"
currentTag = "v0.8"
)

func main() {
Expand Down

0 comments on commit 054125f

Please sign in to comment.