default.nix: fetch lsfg-vk from git instead of locally

should've done that earlier so that there is less friction for people to try this out. now you won't have to drag the files from here to lsfg-vk
This commit is contained in:
Nojus 2025-07-13 04:30:08 +02:00
parent 1059d6fdb3
commit 7fb37b6b4e

View file

@ -33,7 +33,12 @@ in llvmPackages.stdenv.mkDerivation {
pname = "lsfg-vk";
version = "0.0.31";
src = ./.;
src = fetchFromGitHub {
owner = "PancakeTAS";
repo = "lsfg-vk";
rev = "3ec418fd0f802f245bc31511d33c94a25d045ae8";
hash = "sha256-xMRrqKaqKxzOjEFcLas6nRgvIpaZ94ca9BZemEPsIbU=";
};
# we need to unvendor dxvk and pe-parse which would normally be downloaded from git during buildtime in the cmakefiles
patches = [