diff --git a/pkgs/development/libraries/kompute/default.nix b/pkgs/development/libraries/kompute/default.nix index 426aaf3c581e..0b79bd7e56a2 100644 --- a/pkgs/development/libraries/kompute/default.nix +++ b/pkgs/development/libraries/kompute/default.nix @@ -1,6 +1,7 @@ { lib , stdenv , fetchFromGitHub +, fetchpatch , cmake , vulkan-headers , vulkan-loader @@ -20,6 +21,13 @@ stdenv.mkDerivation rec { sha256 = "sha256-OkVGYh8QrD7JNqWFBLrDTYlk6IYHdvt4i7UtC4sQTzo="; }; + patches = [ + (fetchpatch { + url = "https://github.com/KomputeProject/kompute/commit/9a791b161dd58ca927fe090f65fa2b0e5e85e7ca.diff"; + sha256 = "OtFTN8sgPlyiMmVzUnqzCkVMKj6DWxbCXtYwkRdEprY="; + }) + ]; + cmakeFlags = [ "-DKOMPUTE_OPT_INSTALL=1" "-DRELEASE=1"