about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2023-12-26 09:16:02 +1000
committerGitHub <noreply@github.com>2023-12-26 09:16:02 +1000
commitd1a42e979fe428559aee069ae1ca1f4f51ea6167 (patch)
tree871684562bbdfe55f592855edfa56388c7fbc434 /pkgs
parent32ea06b23546a0172ac4e2aa733392e02f57503e (diff)
parente25b2d4e377b8db9ea2b2b86141cb588c5fab338 (diff)
Merge pull request #275214 from linsui/rustc
rust: set sourceProvenance for bootstrap binary
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/rust/binary.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/compilers/rust/binary.nix b/pkgs/development/compilers/rust/binary.nix
index efef07aba4c68..c546e278e7fa8 100644
--- a/pkgs/development/compilers/rust/binary.nix
+++ b/pkgs/development/compilers/rust/binary.nix
@@ -26,7 +26,8 @@ rec {
     inherit src;
 
     meta = with lib; {
-      homepage = "http://www.rust-lang.org/";
+      homepage = "https://www.rust-lang.org/";
+      sourceProvenance = with sourceTypes; [ binaryNativeCode ];
       description = "A safe, concurrent, practical language";
       maintainers = with maintainers; [ qknight ];
       license = [ licenses.mit licenses.asl20 ];
@@ -70,8 +71,9 @@ rec {
     inherit src;
 
     meta = with lib; {
-      homepage = "http://www.rust-lang.org/";
-      description = "A safe, concurrent, practical language";
+      homepage = "https://doc.rust-lang.org/cargo/";
+      sourceProvenance = with sourceTypes; [ binaryNativeCode ];
+      description = "The Rust package manager";
       maintainers = with maintainers; [ qknight ];
       license = [ licenses.mit licenses.asl20 ];
     };