Merge pull request #308516 from OPNA2608/fix/stableVersion/pkgs-tools

pkgs/tools: Fix some unstableGitUpdater users
This commit is contained in:
éclairevoyant 2024-05-05 05:11:55 +00:00 committed by GitHub
commit 7e17df3d1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 19 additions and 14 deletions

View File

@ -19,7 +19,7 @@
stdenv.mkDerivation {
pname = "drawterm";
version = "unstable-2024-04-23";
version = "0-unstable-2024-04-23";
src = fetchFrom9Front {
owner = "plan9front";

View File

@ -19,7 +19,7 @@
assert blas.implementation == "openblas" && lapack.implementation == "openblas";
stdenv.mkDerivation (finalAttrs: {
pname = "kaldi";
version = "unstable-2024-01-31";
version = "0-unstable-2024-01-31";
src = fetchFromGitHub {
owner = "kaldi-asr";

View File

@ -8,7 +8,7 @@
stdenv.mkDerivation rec {
pname = "vgmtools";
version = "unstable-2023-08-27";
version = "0.1-unstable-2023-08-27";
src = fetchFromGitHub {
owner = "vgmrips";

View File

@ -10,7 +10,7 @@
stdenv.mkDerivation {
pname = "cht.sh";
version = "unstable-2022-04-18";
version = "0-unstable-2022-04-18";
nativeBuildInputs = [ makeWrapper ];

View File

@ -6,7 +6,7 @@
stdenv.mkDerivation {
pname = "edid-decode";
version = "unstable-2024-04-02";
version = "0-unstable-2024-04-02";
outputs = [
"out"

View File

@ -33,7 +33,7 @@ in
stdenv.mkDerivation rec {
pname = "ipxe";
version = "unstable-2024-02-08";
version = "1.21.1-unstable-2024-02-08";
nativeBuildInputs = [ gnu-efi mtools openssl perl xorriso xz ] ++ lib.optional stdenv.hostPlatform.isx86 syslinux;
depsBuildBuild = [ buildPackages.stdenv.cc ];
@ -101,7 +101,9 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
passthru.updateScript = unstableGitUpdater {};
passthru.updateScript = unstableGitUpdater {
tagPrefix = "v";
};
meta = with lib;
{ description = "Network boot firmware";

View File

@ -6,7 +6,7 @@
buildGoModule rec {
pname = "tewisay";
version = "unstable-2022-11-04";
version = "0-unstable-2022-11-04";
# lucy deleted the old repo, this is a fork/mirror
src = fetchFromGitHub {

View File

@ -12,7 +12,7 @@
stdenv.mkDerivation {
pname = "urn-timer";
version = "unstable-2024-03-05";
version = "0-unstable-2024-03-05";
src = fetchFromGitHub {
owner = "paoloose";

View File

@ -8,7 +8,7 @@
stdenv.mkDerivation {
pname = "bash-supergenpass";
version = "unstable-2024-03-24";
version = "0-unstable-2024-03-24";
nativeBuildInputs = [ makeWrapper ];

View File

@ -29,7 +29,7 @@ assert lib.assertOneOf "backend" backend [ "x11" "wayland" ];
stdenv.mkDerivation {
pname = "rofi-pass";
version = "unstable-2024-02-13";
version = "2.0.2-unstable-2024-02-13";
src = fetchFromGitHub {
owner = "carnager";

View File

@ -2,7 +2,7 @@
stdenv.mkDerivation {
pname = "untrunc-anthwlock";
version = "unstable-2021-11-21";
version = "0-unstable-2021-11-21";
src = fetchFromGitHub {
owner = "anthwlock";
@ -30,7 +30,10 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
passthru.updateScript = unstableGitUpdater { };
passthru.updateScript = unstableGitUpdater {
# Only stale "latest" tag
hardcodeZeroVersion = true;
};
meta = with lib; {
description = "Restore a truncated mp4/mov (improved version of ponchio/untrunc)";

View File

@ -8,7 +8,7 @@
ocamlPackages.buildDunePackage rec {
pname = "wayland-proxy-virtwl";
version = "unstable-2024-04-08";
version = "0-unstable-2024-04-08";
src = fetchFromGitHub {
owner = "talex5";