File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed
pkgs/applications/video/obs-studio/plugins Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change 1010
1111stdenv . mkDerivation ( finalAttrs : {
1212 pname = "obs-replay-source" ;
13- version = "1.6.13-unstable-2024-02-03 " ;
13+ version = "1.8.0 " ;
1414
1515 src = fetchFromGitHub {
1616 owner = "exeldro" ;
1717 repo = "obs-replay-source" ;
18- rev = "6590fde1c8e4f8c733016646a8165d52e28d094b" ;
19- hash = "sha256-foIzWNlU72FWXZVWR8TEiqJJMfl1vWYDTyhV6thYJbA =" ;
18+ tag = finalAttrs . version ;
19+ hash = "sha256-0IBH4Wb4dbbwqu7DsMb/pfnA8dYRbsW7cBW2XTjQK0U =" ;
2020 } ;
2121
2222 nativeBuildInputs = [ cmake ] ;
23+
2324 buildInputs = [
2425 libcaption
2526 obs-studio
2627 qtbase
2728 ] ;
2829
2930 postInstall = ''
30- mkdir -p " $out/lib" " $out/share"
31- mv " $out/obs-plugins/64bit" " $out/lib/obs-plugins"
32- rm -rf " $out/obs-plugins"
33- mv " $out/data" " $out/share/obs"
31+ mkdir -p $out/lib $out/share
32+ mv $out/obs-plugins/64bit $out/lib/obs-plugins
33+ rm -rf $out/obs-plugins
34+ mv $out/data $out/share/obs
3435 '' ;
3536
3637 dontWrapQtApps = true ;
3738
38- meta = with lib ; {
39+ meta = {
3940 description = "Replay source for OBS studio" ;
4041 homepage = "https://github.com/exeldro/obs-replay-source" ;
41- license = licenses . gpl2Only ;
42- platforms = platforms . linux ;
43- maintainers = with maintainers ; [ pschmitt ] ;
42+ license = lib . licenses . gpl2Only ;
43+ platforms = lib . platforms . linux ;
44+ maintainers = with lib . maintainers ; [ pschmitt ] ;
4445 } ;
4546} )
You can’t perform that action at this time.
0 commit comments