sqlite: add `nixpkgs-update: no auto update` for the update bot

the version assert for sqlite and sqldiff/sqlite-analyzer means that the PRs the bot submits are broken

authored by R. Ryantm and committed by zowoq 7340ea55 2d0daff4

+2
+1
pkgs/development/libraries/sqlite/default.nix
··· 13 13 pname = "sqlite"; 14 14 version = "3.37.2"; 15 15 16 + # nixpkgs-update: no auto update 16 17 # NB! Make sure to update ./tools.nix src (in the same directory). 17 18 src = fetchurl { 18 19 url = "https://sqlite.org/2022/sqlite-autoconf-${archiveVersion version}.tar.gz";
+1
pkgs/development/libraries/sqlite/tools.nix
··· 6 6 inherit pname; 7 7 version = "3.37.2"; 8 8 9 + # nixpkgs-update: no auto update 9 10 src = assert version == sqlite.version; fetchurl { 10 11 url = "https://sqlite.org/2022/sqlite-src-${archiveVersion version}.zip"; 11 12 sha256 = "sha256-SGdwtNX4i1uw26VA3W7hdjBn11Od/uGKfGb+m7A9Ftk=";