treewide: remove "v" prefix in version (#380998)
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "version-tester";
|
||||
version = "v${criterion.version}";
|
||||
inherit (criterion) version;
|
||||
src = ./test_dummy.c;
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "docker-init";
|
||||
version = "v1.4.0";
|
||||
version = "1.4.0";
|
||||
|
||||
tag = "175267";
|
||||
|
||||
src = fetchurl {
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "git-together";
|
||||
version = "v0.1.0-alpha.26";
|
||||
version = "0.1.0-alpha.26";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kejadlen";
|
||||
repo = "git-together";
|
||||
rev = version;
|
||||
tag = "v${version}";
|
||||
hash = "sha256-2HgOaqlX0mmmvRlALHm90NAdIhby/jWUJO63bQFqc+4=";
|
||||
};
|
||||
|
||||
@@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
|
||||
cargoHash = "sha256-5LKKjHzIlXw0bUmF7GDCVW0cptCxohq6CNPIrMZKorM=";
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/kejadlen/git-together/releases/tag/${src.rev}";
|
||||
changelog = "https://github.com/kejadlen/git-together/releases/tag/v${version}";
|
||||
description = "Better commit attribution while pairing without messing with your git workflow";
|
||||
homepage = "https://github.com/kejadlen/git-together";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -6,12 +6,12 @@
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "hullcaster";
|
||||
version = "v0.1.2";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gilcu3";
|
||||
repo = "hullcaster";
|
||||
rev = version;
|
||||
tag = "v${version}";
|
||||
hash = "sha256-TaELX/xMxm7OTmVnvkgEmdhnVrIlxSNqlE73+I5qxCc=";
|
||||
};
|
||||
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "lora";
|
||||
version = "v3.005";
|
||||
version = "3.005";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cyrealtype";
|
||||
repo = "lora";
|
||||
rev = version;
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-EHa8DUPFRvdYBdCY41gfjKGtTHwGIXCwD9Qc+Npmt1s=";
|
||||
};
|
||||
|
||||
@@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation rec {
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "Lora is a well-balanced contemporary serif with roots in calligraphy";
|
||||
homepage = "https://github.com/cyrealtype/lora";
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ ofalvai ];
|
||||
license = lib.licenses.ofl;
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = with lib.maintainers; [ ofalvai ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
}:
|
||||
buildDotnetModule rec {
|
||||
pname = "msgraph-cli";
|
||||
version = "v1.9.0";
|
||||
version = "1.9.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "microsoftgraph";
|
||||
repo = "msgraph-cli";
|
||||
rev = version;
|
||||
tag = "v${version}";
|
||||
hash = "sha256-bpdxzVlQWQLNYTZHN25S6qa3NKHhDc+xV6NvzSNMVnQ=";
|
||||
};
|
||||
|
||||
|
||||
@@ -8,17 +8,17 @@
|
||||
let
|
||||
finalAttrs = {
|
||||
pname = "ncps";
|
||||
version = "v0.1.1";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kalbasit";
|
||||
repo = "ncps";
|
||||
rev = finalAttrs.version;
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-Vr/thppCABdZDl1LEc7l7c7Ih55U/EFwJInWSUWoLJA";
|
||||
};
|
||||
|
||||
ldflags = [
|
||||
"-X github.com/kalbasit/ncps/cmd.Version=${finalAttrs.version}"
|
||||
"-X github.com/kalbasit/ncps/cmd.Version=v${finalAttrs.version}"
|
||||
];
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "vmctl";
|
||||
version = "v0.99-unstable-2024-05-14";
|
||||
version = "0.99-unstable-2024-05-14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "SamsungDS";
|
||||
|
||||
@@ -144,9 +144,9 @@ super: lib.trivial.pipe super [
|
||||
}))
|
||||
|
||||
(patchExtension "pano@elhan.io" (final: prev: {
|
||||
version = "v23-alpha3";
|
||||
version = "23-alpha3";
|
||||
src = fetchzip {
|
||||
url = "https://github.com/oae/gnome-shell-pano/releases/download/${final.version}/pano@elhan.io.zip";
|
||||
url = "https://github.com/oae/gnome-shell-pano/releases/download/v${final.version}/pano@elhan.io.zip";
|
||||
hash = "sha256-LYpxsl/PC8hwz0ZdH5cDdSZPRmkniBPUCqHQxB4KNhc=";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
}:
|
||||
|
||||
let
|
||||
version = "v1.2.1";
|
||||
version = "1.2.1";
|
||||
in
|
||||
buildPecl {
|
||||
inherit version;
|
||||
@@ -15,7 +15,7 @@ buildPecl {
|
||||
src = fetchFromGitHub {
|
||||
owner = "php";
|
||||
repo = "pecl-networking-uuid";
|
||||
tag = version;
|
||||
tag = "v${version}";
|
||||
hash = "sha256-C4SoSKkCTQOLKM1h47vbBgiHTG+ChocDB9tzhWfKUsw=";
|
||||
};
|
||||
|
||||
@@ -26,7 +26,7 @@ buildPecl {
|
||||
env.PHP_UUID_DIR = libuuid;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/php/pecl-networking-uuid/releases/tag/${version}";
|
||||
changelog = "https://github.com/php/pecl-networking-uuid/releases/tag/v${version}";
|
||||
description = "A wrapper around Universally Unique IDentifier library (libuuid).";
|
||||
license = lib.licenses.php301;
|
||||
homepage = "https://github.com/php/pecl-networking-uuid";
|
||||
|
||||
@@ -8,13 +8,13 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "falconpy";
|
||||
version = "v1.4.6";
|
||||
version = "1.4.6";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CrowdStrike";
|
||||
repo = "falconpy";
|
||||
tag = version;
|
||||
tag = "v${version}";
|
||||
hash = "sha256-boebQI//NenEqctQbEdxiXKU3/07C6jVzWVHecmJjPk=";
|
||||
};
|
||||
|
||||
@@ -29,7 +29,7 @@ buildPythonPackage rec {
|
||||
meta = {
|
||||
description = "The CrowdStrike Falcon SDK for Python";
|
||||
homepage = "https://github.com/CrowdStrike/falconpy";
|
||||
changelog = "https://github.com/CrowdStrike/falconpy/releases/tag/${version}";
|
||||
changelog = "https://github.com/CrowdStrike/falconpy/releases/tag/v${version}";
|
||||
license = lib.licenses.unlicense;
|
||||
maintainers = with lib.maintainers; [ levigross ];
|
||||
};
|
||||
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "gede";
|
||||
version = "v2.22.1";
|
||||
version = "2.22.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jhn98032";
|
||||
repo = "gede";
|
||||
rev = version;
|
||||
tag = "v${version}";
|
||||
hash = "sha256-6YSrqLDuV4G/uvtYy4vzbwqrMFftMvZdp3kr3R436rs=";
|
||||
};
|
||||
|
||||
|
||||
@@ -16,11 +16,11 @@ let
|
||||
# This is copied from influxdb2 with the required flux version
|
||||
flux = rustPlatform.buildRustPackage rec {
|
||||
pname = "libflux";
|
||||
version = "v${libflux_version}";
|
||||
version = libflux_version;
|
||||
src = fetchFromGitHub {
|
||||
owner = "influxdata";
|
||||
repo = "flux";
|
||||
rev = "v${libflux_version}";
|
||||
tag = "v${libflux_version}";
|
||||
hash = "sha256-XHT/+JMu5q1cPjZT2x/OKEPgxFJcnjrQKqn8w9/Mb3s=";
|
||||
};
|
||||
patches = [
|
||||
|
||||
@@ -32,7 +32,7 @@ let
|
||||
|
||||
flux = rustPlatform.buildRustPackage {
|
||||
pname = "libflux";
|
||||
version = "v${libflux_version}";
|
||||
version = libflux_version;
|
||||
src = fetchFromGitHub {
|
||||
owner = "influxdata";
|
||||
repo = "flux";
|
||||
|
||||
Reference in New Issue
Block a user