Unverified Commit abc69efa authored by éclairevoyant's avatar éclairevoyant Committed by GitHub
Browse files

Merge pull request #308062 from OPNA2608/fix/stableVersion/pkgs-mpvScripts

mpvScripts.*: Fix some unstableGitUpdater users
parents 0f1c8f64 40782ab4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
buildLua {
  pname = "chapterskip";

  version = "unstable-2022-09-08";
  version = "0-unstable-2022-09-08";
  src = fetchFromGitHub {
    owner = "po5";
    repo  = "chapterskip";
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

buildLua {
  pname = "mpv-convert-script";
  version = "unstable-2015-07-02";
  version = "0-unstable-2015-07-02";
  src = fetchgit {
    url = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
    rev = "f95cee43e390e843a47e8ec9d1711a12a8cd343d";
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

buildLua {
  pname = "video-cutter";
  version = "unstable-2023-11-09";
  version = "0-unstable-2023-11-10";

  src = fetchFromGitHub {
    owner = "rushmj";
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

buildLua rec {
  pname = "mpv-playlistmanager";
  version = "unstable-2024-02-26";
  version = "0-unstable-2024-02-26";

  src = fetchFromGitHub {
    owner = "jonniek";
+5 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@

buildLua {
  pname = "mpv-webm";
  version = "unstable-2024-04-22";
  version = "0-unstable-2024-04-22";

  src = fetchFromGitHub {
    owner = "ekisu";
@@ -15,7 +15,10 @@ buildLua {
    rev = "225e8e53842f7da6f77034309c1e54293dc629a4";
    hash = "sha256-82xWiuOChxfzX6e0+cGFxTqyuiPefyVwpvLM5ka7nPk=";
  };
  passthru.updateScript = unstableGitUpdater {};
  passthru.updateScript = unstableGitUpdater {
    # only "latest" tag pointing at HEAD
    hardcodeZeroVersion = true;
  };

  dontBuild = false;
  nativeBuildInputs = [ luaPackages.moonscript ];
Loading