obs-studio-plugins.obs-rgb-levels: 1.0.0 -> 1.0.2 (#409052)

This commit is contained in:
Peder Bergebakken Sundt
2025-05-28 03:15:54 +02:00
committed by GitHub
2 changed files with 8 additions and 12 deletions
@@ -54,7 +54,7 @@
obs-replay-source = qt6Packages.callPackage ./obs-replay-source.nix { };
obs-rgb-levels-filter = callPackage ./obs-rgb-levels-filter.nix { };
obs-rgb-levels = callPackage ./obs-rgb-levels.nix { };
obs-scale-to-sound = callPackage ./obs-scale-to-sound.nix { };
@@ -7,28 +7,24 @@
}:
stdenv.mkDerivation rec {
pname = "obs-rgb-levels-filter";
version = "1.0.0";
pname = "obs-rgb-levels";
version = "1.0.2";
src = fetchFromGitHub {
owner = "wimpysworld";
repo = "obs-rgb-levels-filter";
repo = "obs-rgb-levels";
rev = version;
sha256 = "sha256-QREwK9nBhjCBFslXUj9bGUGPgfEns8QqlgP5e2O/0oU=";
sha256 = "sha256-W79KUUUodlARlIMg/DaN+fxq/NEkp4k8MuEOHrJTbCk=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ obs-studio ];
cmakeFlags = [
"-DOBS_SRC_DIR=${obs-studio.src}"
];
meta = with lib; {
description = "Simple OBS Studio filter to adjust RGB levels";
homepage = "https://github.com/wimpysworld/obs-rgb-levels-filter";
description = "A simple OBS Studio filter to adjust RGB levels.";
homepage = "https://github.com/wimpysworld/obs-rgb-levels";
maintainers = with maintainers; [ flexiondotorg ];
license = licenses.gpl2Plus;
license = licenses.gpl2Only;
platforms = [
"x86_64-linux"
"i686-linux"