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

Merge pull request #309375 from OPNA2608/fix/stableVersion/pkgs-stuff

treewide: Fix some unstableGitUpdater users
parents 7ed6b76f 693b3374
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

stdenvNoCC.mkDerivation rec {
  pname = "scheme-manpages";
  version = "unstable-2024-02-11";
  version = "0-unstable-2024-02-11";

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

let
  themeName = "Dracula";
  version = "unstable-2024-04-24";
  version = "4.0.0-unstable-2024-04-24";
in
stdenvNoCC.mkDerivation {
  pname = "dracula-theme";
@@ -38,7 +38,9 @@ stdenvNoCC.mkDerivation {
    runHook postInstall
  '';

  passthru.updateScript = unstableGitUpdater { };
  passthru.updateScript = unstableGitUpdater {
    tagPrefix = "v";
  };

  meta = with lib; {
    description = "Dracula variant of the Ant theme";
+4 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

mkDerivation rec {
  pname = "material-kwin-decoration";
  version = "unstable-2023-01-15";
  version = "7-unstable-2023-01-15";

  src = fetchFromGitHub {
    owner = "Zren";
@@ -47,7 +47,9 @@ mkDerivation rec {
  ];

  passthru = {
    updateScript = unstableGitUpdater { };
    updateScript = unstableGitUpdater {
      tagPrefix = "v";
    };
  };

  meta = with lib; {
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@

stdenv.mkDerivation {
  name = "nixos-bgrt-plymouth";
  version = "unstable-2023-03-10";
  version = "0-unstable-2023-03-10";

  src = fetchFromGitHub {
    repo = "plymouth-theme-nixos-bgrt";
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

stdenv.mkDerivation rec {
  pname = "file-roller-contract";
  version = "unstable-2021-02-22";
  version = "0-unstable-2021-02-22";

  src = fetchFromGitHub {
    owner = "elementary";
Loading