mirror of
https://github.com/pabloaul/lsfg-vk-flake.git
synced 2025-08-28 03:16:30 -03:00
Compare commits
No commits in common. "0fa0918ada267e177274af61dd1875ef1b5a0a8e" and "fcd672a3b608825cd8df3e3e3d63bcdbec97dc00" have entirely different histories.
0fa0918ada
...
fcd672a3b6
5 changed files with 51 additions and 90 deletions
|
@ -31,10 +31,7 @@ outputs = {nixpkgs, lsfg-vk-flake, ...}: {
|
||||||
|
|
||||||
And then enable this in your system config:
|
And then enable this in your system config:
|
||||||
```nix
|
```nix
|
||||||
services.lsfg-vk = {
|
services.lsfg-vk.enable = true;
|
||||||
enable = true;
|
|
||||||
ui.enable = true; # installs gui for configuring lsfg-vk
|
|
||||||
};
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### User install (manual)
|
### User install (manual)
|
||||||
|
|
|
@ -2,39 +2,56 @@
|
||||||
lib,
|
lib,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
cmake,
|
cmake,
|
||||||
|
ninja,
|
||||||
vulkan-headers,
|
vulkan-headers,
|
||||||
|
vulkan-loader,
|
||||||
llvmPackages,
|
llvmPackages,
|
||||||
|
libXrandr,
|
||||||
|
libXinerama,
|
||||||
|
libXcursor,
|
||||||
|
libXi,
|
||||||
|
libglvnd,
|
||||||
|
libxkbcommon,
|
||||||
|
wayland-scanner,
|
||||||
|
pkg-config,
|
||||||
|
wayland,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
llvmPackages.stdenv.mkDerivation {
|
llvmPackages.stdenv.mkDerivation {
|
||||||
pname = "lsfg-vk";
|
pname = "lsfg-vk";
|
||||||
version = "0.9.0-2025-07-26-3c77bad";
|
version = "unstable-2025-07-24-c959c8f";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "PancakeTAS";
|
owner = "PancakeTAS";
|
||||||
repo = "lsfg-vk";
|
repo = "lsfg-vk";
|
||||||
rev = "3c77bad7941e2699a797b2741b64b8d907118bb6";
|
rev = "c959c8f542e416a63d5436e47e1762e8c8074285";
|
||||||
hash = "sha256-ZAtTzdSx81NK2ABSEIDOeYUgJDH4ROMApDSlg8U140k=";
|
hash = "sha256-/JS97I6OgzLAPzC1CbilQAx9B1T765aMa5Pr4dVyKzk=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace VkLayer_LS_frame_generation.json \
|
|
||||||
--replace "liblsfg-vk.so" "$out/lib/liblsfg-vk.so"
|
|
||||||
'';
|
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DCMAKE_BUILD_TYPE=Release"
|
"-DCMAKE_BUILD_TYPE=Release"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
llvmPackages.clang-tools
|
llvmPackages.clang-tools
|
||||||
llvmPackages.libllvm
|
llvmPackages.libllvm # needed for release builds
|
||||||
cmake
|
cmake
|
||||||
|
ninja
|
||||||
|
wayland-scanner
|
||||||
|
pkg-config
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
vulkan-headers
|
vulkan-headers
|
||||||
|
vulkan-loader
|
||||||
|
libXrandr
|
||||||
|
libXinerama
|
||||||
|
libXcursor
|
||||||
|
libXi
|
||||||
|
libglvnd
|
||||||
|
libxkbcommon
|
||||||
|
wayland
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
|
@ -6,11 +6,9 @@
|
||||||
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ];
|
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
packages = forAllSystems (system: {
|
packages = forAllSystems (system:
|
||||||
default = nixpkgs.legacyPackages.${system}.callPackage ./lsfg-vk.nix { };
|
{ default = nixpkgs.legacyPackages.${system}.callPackage ./default.nix { }; }
|
||||||
lsfg-vk = nixpkgs.legacyPackages.${system}.callPackage ./lsfg-vk.nix { };
|
);
|
||||||
lsfg-vk-ui = nixpkgs.legacyPackages.${system}.callPackage ./lsfg-vk-ui.nix { };
|
|
||||||
});
|
|
||||||
|
|
||||||
nixosModules.default = import ./module.nix;
|
nixosModules.default = import ./module.nix;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
fetchFromGitHub,
|
|
||||||
rustPlatform,
|
|
||||||
pkg-config,
|
|
||||||
glib,
|
|
||||||
pango,
|
|
||||||
gdk-pixbuf,
|
|
||||||
gtk4,
|
|
||||||
libadwaita
|
|
||||||
}:
|
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
|
||||||
pname = "lsfg-vk-ui";
|
|
||||||
version = "0.9.0-2025-07-26-3c77bad";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "PancakeTAS";
|
|
||||||
repo = "lsfg-vk";
|
|
||||||
rev = "3c77bad7941e2699a797b2741b64b8d907118bb6";
|
|
||||||
hash = "sha256-ZAtTzdSx81NK2ABSEIDOeYUgJDH4ROMApDSlg8U140k=";
|
|
||||||
};
|
|
||||||
|
|
||||||
cargoHash = "sha256-1/3CTCXTqSfb/xtx/Q1whaHPeQ0fxu0Zg2sVJPxdcK0=";
|
|
||||||
|
|
||||||
sourceRoot = "source/ui";
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pkg-config
|
|
||||||
glib
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
pango
|
|
||||||
gdk-pixbuf
|
|
||||||
gtk4
|
|
||||||
libadwaita
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Graphical interface for lsfg-vk";
|
|
||||||
homepage = "https://github.com/PancakeTAS/lsfg-vk/";
|
|
||||||
license = licenses.mit;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
mainProgram = "lsfg-vk-ui";
|
|
||||||
};
|
|
||||||
}
|
|
46
module.nix
46
module.nix
|
@ -6,41 +6,40 @@
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.services.lsfg-vk;
|
cfg = config.services.lsfg-vk;
|
||||||
lsfg-vk = pkgs.callPackage ./lsfg-vk.nix { };
|
lsfg-vk = pkgs.callPackage ./default.nix { };
|
||||||
lsfg-vk-ui = pkgs.callPackage ./lsfg-vk-ui.nix { };
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
services.lsfg-vk = {
|
services.lsfg-vk = {
|
||||||
enable = lib.mkEnableOption "Lossless Scaling Frame Generation Vulkan layer";
|
enable = lib.mkEnableOption "Lossless Scaling Frame Generation Vulkan layer";
|
||||||
|
|
||||||
ui.enable = lib.mkEnableOption "Enables a GUI for configuring lsfg-vk";
|
|
||||||
|
|
||||||
package = lib.mkOption {
|
package = lib.mkOption {
|
||||||
type = lib.types.package;
|
type = lib.types.package;
|
||||||
description = "The lsfg-vk package to use";
|
description = "The lsfg-vk package to use";
|
||||||
default = lsfg-vk;
|
default = lsfg-vk;
|
||||||
};
|
};
|
||||||
|
|
||||||
losslessDLLFile = lib.mkOption {
|
losslessDLLFile = lib.mkOption
|
||||||
type = with lib.types; nullOr str;
|
{
|
||||||
default = null;
|
type = with lib.types; nullOr str;
|
||||||
example = "/home/user/games/Lossless Scaling/Lossless.dll";
|
default = null;
|
||||||
description = ''
|
example = "/home/user/games/Lossless Scaling/Lossless.dll";
|
||||||
Sets the LSFG_DLL_PATH environment variable.
|
description = ''
|
||||||
Required if Lossless Scaling isn't installed in a standard location
|
Sets the LSFG_DLL_PATH environment variable.
|
||||||
'';
|
Required if Lossless Scaling isn't installed in a standard location
|
||||||
};
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
configFile = lib.mkOption {
|
configFile = lib.mkOption
|
||||||
type = with lib.types; nullOr str;
|
{
|
||||||
default = null;
|
type = with lib.types; nullOr str;
|
||||||
example = "/home/user/.config/lsfg-vk/conf.toml";
|
default = null;
|
||||||
description = ''
|
example = "/home/user/.config/lsfg-vk/conf.toml";
|
||||||
Sets the LSFG_CONFIG environment variable.
|
description = ''
|
||||||
Required if the lsfg-vk configuration file isn't stored at the standard location
|
Sets the LSFG_CONFIG environment variable.
|
||||||
'';
|
Required if the lsfg-vk configuration file isn't stored at the standard location
|
||||||
};
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -53,9 +52,6 @@ in
|
||||||
environment.etc."vulkan/implicit_layer.d/VkLayer_LS_frame_generation.json".source =
|
environment.etc."vulkan/implicit_layer.d/VkLayer_LS_frame_generation.json".source =
|
||||||
"${cfg.package}/share/vulkan/implicit_layer.d/VkLayer_LS_frame_generation.json";
|
"${cfg.package}/share/vulkan/implicit_layer.d/VkLayer_LS_frame_generation.json";
|
||||||
}
|
}
|
||||||
(lib.mkIf cfg.ui.enable {
|
|
||||||
environment.systemPackages = [ lsfg-vk-ui ];
|
|
||||||
})
|
|
||||||
(lib.mkIf (cfg.losslessDLLFile != null) {
|
(lib.mkIf (cfg.losslessDLLFile != null) {
|
||||||
environment.sessionVariables.LSFG_DLL_PATH =
|
environment.sessionVariables.LSFG_DLL_PATH =
|
||||||
lib.warn "losslessDLLFile is deprecated and will only be used by lsfg-vk if LSFG_LEGACY is set."
|
lib.warn "losslessDLLFile is deprecated and will only be used by lsfg-vk if LSFG_LEGACY is set."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue