This commit is contained in:
Martin Benonisen 2025-01-16 13:24:46 +01:00
parent 6167781189
commit a7146503d2
Signed by: mbeno
SSH Key Fingerprint: SHA256:iAzOA1WUAxocdh/WRWXcSg5nw2dJ1aDCvPuT+3ZjkwI
3 changed files with 30 additions and 29 deletions

12
flake.lock generated
View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736508663, "lastModified": 1736785676,
"narHash": "sha256-ZOaGwa+WnB7Zn3YXimqjmIugAnHePdXCmNu+AHkq808=", "narHash": "sha256-TY0jUwR3EW0fnS0X5wXMAVy6h4Z7Y6a3m+Yq++C9AyE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2532b500c3ed2b8940e831039dcec5a5ea093afc", "rev": "fc52a210b60f2f52c74eac41a8647c1573d2071d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1736523798, "lastModified": 1736883708,
"narHash": "sha256-Xb8mke6UCYjge9kPR9o4P1nVrhk7QBbKv3xQ9cj7h2s=", "narHash": "sha256-uQ+NQ0/xYU0N1CnXsa2zghgNaOPxWpMJXSUJJ9W7140=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "130595eba61081acde9001f43de3248d8888ac4a", "rev": "eb62e6aa39ea67e0b8018ba8ea077efe65807dc8",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -59,7 +59,10 @@ in
vulkan-headers vulkan-headers
vulkan-loader vulkan-loader
vulkan-tools vulkan-tools
xdg-utils
vulkan-tools-lunarg vulkan-tools-lunarg
xdg-desktop-portal-gtk
xdg-desktop-portal
vulkan-utility-libraries vulkan-utility-libraries
vulkan-validation-layers vulkan-validation-layers
vkdisplayinfo vkdisplayinfo
@ -70,11 +73,9 @@ in
sipcalc sipcalc
xdg-utils xdg-utils
pass pass
xdg-desktop-portal
pkg-config pkg-config
xclip xclip
nvd nvd
xdg-desktop-portal-gtk
google-chrome google-chrome
zoom-us zoom-us
neovim neovim

View File

@ -1,31 +1,31 @@
{ { lib
lib, , stdenv
stdenv, , fetchurl
fetchurl, , makeWrapper
makeWrapper, , makeDesktopItem
makeDesktopItem, , copyDesktopItems
copyDesktopItems, , xorg
xorg, , gtk2
gtk2, , sqlite
sqlite, , openal
openal, , cairo
cairo, , libGLU
libGLU, , SDL2
SDL2, , freealut
freealut, , libglvnd
libglvnd, , pipewire
pipewire, , libpulseaudio
libpulseaudio, , dotnet-runtime_8
dotnet-runtime_8, ,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "vintagestory"; pname = "vintagestory";
version = "1.20.0-rc.6"; version = "1.20.0-rc.8";
src = fetchurl { src = fetchurl {
url = "https://cdn.vintagestory.at/gamefiles/unstable/vs_client_linux-x64_${version}.tar.gz"; url = "https://cdn.vintagestory.at/gamefiles/unstable/vs_client_linux-x64_${version}.tar.gz";
hash = "sha256-JxyQrZrAmMkUy28JUak0BHHpuGEb2fbxNrtOGVKGhOQ="; hash = "sha256-/MPR6PAkZv93zT6YbJatg67aRYfzp9vFRY82gtVksAs=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [