treewide: remove unneeded string interpolation (#396740)

This commit is contained in:
Gaétan Lepage 2025-04-07 08:18:37 +02:00 committed by GitHub
commit f2670dc3d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "coin-or"; owner = "coin-or";
repo = "CppAD"; repo = "CppAD";
tag = "${finalAttrs.version}"; tag = finalAttrs.version;
hash = "sha256-rAKD/PAjepDchvrJp7iLYw5doNq8Af1oVh61gfMcNYI="; hash = "sha256-rAKD/PAjepDchvrJp7iLYw5doNq8Af1oVh61gfMcNYI=";
}; };

View File

@ -12,7 +12,7 @@ buildGoModule (finalAttrs: {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tess1o"; owner = "tess1o";
repo = "go-ecoflow-exporter"; repo = "go-ecoflow-exporter";
tag = "${finalAttrs.version}"; tag = finalAttrs.version;
hash = "sha256-VCzMItYgnuDXDYdrk/ojzqUE2Fjr7KWGNnLhoQ+ZPYs="; hash = "sha256-VCzMItYgnuDXDYdrk/ojzqUE2Fjr7KWGNnLhoQ+ZPYs=";
}; };

View File

@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "owntone"; owner = "owntone";
repo = "owntone-server"; repo = "owntone-server";
tag = "${finalAttrs.version}"; tag = finalAttrs.version;
hash = "sha256-Mj3G1+Hwa/zl0AM4SO6TcB4W3WJkpIDzrSPEFx0vaEk="; hash = "sha256-Mj3G1+Hwa/zl0AM4SO6TcB4W3WJkpIDzrSPEFx0vaEk=";
}; };

View File

@ -42,7 +42,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rustdesk"; owner = "rustdesk";
repo = "rustdesk"; repo = "rustdesk";
tag = "${finalAttrs.version}"; tag = finalAttrs.version;
fetchSubmodules = true; fetchSubmodules = true;
hash = "sha256-m1bFljZL8vNaugepVs8u1EWNpDLtxgSSZqKGQmgrmsA="; hash = "sha256-m1bFljZL8vNaugepVs8u1EWNpDLtxgSSZqKGQmgrmsA=";
}; };

View File

@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "free-astro"; owner = "free-astro";
repo = "siril"; repo = "siril";
tag = "${finalAttrs.version}"; tag = finalAttrs.version;
hash = "sha256-pSJp4Oj8x4pKuwPSaSyGbyGfpnanoWBxAdXtzGTP7uA="; hash = "sha256-pSJp4Oj8x4pKuwPSaSyGbyGfpnanoWBxAdXtzGTP7uA=";
}; };

View File

@ -11,7 +11,7 @@ php.buildComposerProject2 (finalAttrs: {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "PHPCSStandards"; owner = "PHPCSStandards";
repo = "PHP_CodeSniffer"; repo = "PHP_CodeSniffer";
tag = "${finalAttrs.version}"; tag = finalAttrs.version;
hash = "sha256-wlI/ylBeSkeg96sDwvDV9EedSLILFqsl96yWIOFtDQo="; hash = "sha256-wlI/ylBeSkeg96sDwvDV9EedSLILFqsl96yWIOFtDQo=";
}; };

View File

@ -46,7 +46,7 @@ postgresqlBuildExtension (finalAttrs: {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "postgis"; owner = "postgis";
repo = "postgis"; repo = "postgis";
tag = "${finalAttrs.version}"; tag = finalAttrs.version;
hash = "sha256-1kOLtG6AMavbWQ1lHG2ABuvIcyTYhgcbjuVmqMR4X+g="; hash = "sha256-1kOLtG6AMavbWQ1lHG2ABuvIcyTYhgcbjuVmqMR4X+g=";
}; };