lol

Merge pull request #207703 from figsoda/nix-update

nix-update: 0.11.0 -> 0.12.0

authored by

Jörg Thalheim and committed by
GitHub
c9101aa3 6c2f10db

+7 -7
+4 -4
pkgs/common-updater/nix-update.nix
··· 1 - { nix-update }: 1 + { lib, nix-update }: 2 2 3 - { attrPath 4 - , extraArgs ? [] 3 + { attrPath ? null 4 + , extraArgs ? [ ] 5 5 }: 6 6 7 - [ "${nix-update}/bin/nix-update" ] ++ extraArgs ++ [ attrPath ] 7 + [ "${nix-update}/bin/nix-update" ] ++ extraArgs ++ lib.optional (attrPath != null) attrPath
+1 -1
pkgs/shells/fish/default.nix
··· 327 327 ${fish}/bin/fish ${fishScript} && touch $out 328 328 ''; 329 329 }; 330 - updateScript = nix-update-script { attrPath = pname; }; 330 + updateScript = nix-update-script { }; 331 331 }; 332 332 }; 333 333 in
+2 -2
pkgs/tools/package-management/nix-update/default.nix
··· 8 8 9 9 buildPythonApplication rec { 10 10 pname = "nix-update"; 11 - version = "0.11.0"; 11 + version = "0.12.0"; 12 12 format = "setuptools"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Mic92"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-nBLNMQKLgx5m5VyxTdSLBE9kNhUPdaRzVi5BQx83m+4="; 18 + sha256 = "sha256-7Co8mKG3eyM5WmGoAskyYleeutH4/kygSkvFpSg7Y04="; 19 19 }; 20 20 21 21 makeWrapperArgs = [