obs-studio-plugins.obs-vkcapture: 1.3.2 -> 1.3.3
This commit is contained in:
parent
b4a2d67964
commit
ffcdc5bb81
1 changed files with 7 additions and 6 deletions
|
@ -18,15 +18,15 @@
|
||||||
, obs-vkcapture32
|
, obs-vkcapture32
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "obs-vkcapture";
|
pname = "obs-vkcapture";
|
||||||
version = "1.3.2";
|
version = "1.3.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nowrep";
|
owner = "nowrep";
|
||||||
repo = pname;
|
repo = finalAttrs.pname;
|
||||||
rev = "v${version}";
|
rev = "v${finalAttrs.version}";
|
||||||
hash = "sha256-UQQ8oBEnOxmSN4ZyW4LdPZYvd5eB9EmdR0UvE1wgMZw=";
|
hash = "sha256-pvJzzDbsmsu46C8Jki+eMfCZLejkgvqns2hVNDtpSk0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cmakeFlags = lib.optionals stdenv.isi686 [
|
cmakeFlags = lib.optionals stdenv.isi686 [
|
||||||
|
@ -60,8 +60,9 @@ stdenv.mkDerivation rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "OBS Linux Vulkan/OpenGL game capture";
|
description = "OBS Linux Vulkan/OpenGL game capture";
|
||||||
homepage = "https://github.com/nowrep/obs-vkcapture";
|
homepage = "https://github.com/nowrep/obs-vkcapture";
|
||||||
|
changelog = "https://github.com/nowrep/obs-vkcapture/releases/tag/v${finalAttrs.version}";
|
||||||
maintainers = with maintainers; [ atila pedrohlc ];
|
maintainers = with maintainers; [ atila pedrohlc ];
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue