about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-03-12 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2024-03-12 04:20:00 +0000
commit79c75e0afdd6509b7c7f06bf17e3b3d1728af39e (patch)
tree81ab558545b3257ab37a2639841c24a79f251016 /pkgs
parentf61be692ce79f38ac7db8db86c10855af5b3ac9e (diff)
downloadnixlib-79c75e0afdd6509b7c7f06bf17e3b3d1728af39e.tar
nixlib-79c75e0afdd6509b7c7f06bf17e3b3d1728af39e.tar.gz
nixlib-79c75e0afdd6509b7c7f06bf17e3b3d1728af39e.tar.bz2
nixlib-79c75e0afdd6509b7c7f06bf17e3b3d1728af39e.tar.lz
nixlib-79c75e0afdd6509b7c7f06bf17e3b3d1728af39e.tar.xz
nixlib-79c75e0afdd6509b7c7f06bf17e3b3d1728af39e.tar.zst
nixlib-79c75e0afdd6509b7c7f06bf17e3b3d1728af39e.zip
uv: passthru.updateScript
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/uv/uv/package.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/by-name/uv/uv/package.nix b/pkgs/by-name/uv/uv/package.nix
index dbe744697d6d..eacac082fa5b 100644
--- a/pkgs/by-name/uv/uv/package.nix
+++ b/pkgs/by-name/uv/uv/package.nix
@@ -6,6 +6,7 @@
 , pkg-config
 , rustPlatform
 , stdenv
+, nix-update-script
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -47,6 +48,8 @@ rustPlatform.buildRustPackage rec {
     OPENSSL_NO_VENDOR = true;
   };
 
+  passthru.updateScript = nix-update-script { };
+
   meta = with lib; {
     description = "An extremely fast Python package installer and resolver, written in Rust";
     homepage = "https://github.com/astral-sh/uv";