nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

sqlite: 3.50.2 -> 3.50.4 (#426289)

authored by philiptaron.tngl.sh and committed by

GitHub 39842bce f01c3137

+5 -5
+3 -3
pkgs/development/libraries/sqlite/default.nix
··· 27 27 28 28 stdenv.mkDerivation rec { 29 29 pname = "sqlite${lib.optionalString interactive "-interactive"}"; 30 - version = "3.50.2"; 30 + version = "3.50.4"; 31 31 32 32 # nixpkgs-update: no auto update 33 33 # NB! Make sure to update ./tools.nix src (in the same directory). 34 34 src = fetchurl { 35 35 url = "https://sqlite.org/2025/sqlite-autoconf-${archiveVersion version}.tar.gz"; 36 - hash = "sha256-hKYW/9MXOORZC2W6uzqeHvk3DzY4422yIO4Oc/itIVY="; 36 + hash = "sha256-o9tYehuS7l3awvZrPttBsm+chnJ1eC1Gw6CIl31qWxg="; 37 37 }; 38 38 docsrc = fetchurl { 39 39 url = "https://sqlite.org/2025/sqlite-doc-${archiveVersion version}.zip"; 40 - hash = "sha256-n4uitTo6oskWbUagLZEbhdO4sLhAxJHTIdX8YhUONBk="; 40 + hash = "sha256-+KA89GFQAxDHp4XJ1vhhIayUZWAZgs3Kxt4MWYfb/C8="; 41 41 }; 42 42 43 43 outputs = [
+2 -2
pkgs/development/libraries/sqlite/tools.nix
··· 19 19 }: 20 20 stdenv.mkDerivation rec { 21 21 inherit pname; 22 - version = "3.50.2"; 22 + version = "3.50.4"; 23 23 24 24 # nixpkgs-update: no auto update 25 25 src = 26 26 assert version == sqlite.version; 27 27 fetchurl { 28 28 url = "https://sqlite.org/2025/sqlite-src-${archiveVersion version}.zip"; 29 - hash = "sha256-CR7uw64sy5Gqwh0OmkpYlE+yyxEvpnv/w+CMLsothcg="; 29 + hash = "sha256-t7TcBg82BTkC+2WzRLu+1ZLmSyKRomrAb+d+7Al4UOk="; 30 30 }; 31 31 32 32 nativeBuildInputs = [ unzip ];