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