{ stdenv, fetchurl, unzip, sqlite, tcl }: let archiveVersion = import ./archive-version.nix stdenv.lib; in stdenv.mkDerivation rec { name = "sqlite-analyzer-${version}"; version = "3.27.2"; src = assert version == sqlite.version; fetchurl { url = "https://sqlite.org/2019/sqlite-src-${archiveVersion version}.zip"; sha256 = "02nz1y22wyb8101d9y6wfdrvp855wvch67js12p5y3riya345g8m"; }; nativeBuildInputs = [ unzip ]; buildInputs = [ tcl ]; makeFlags = [ "sqlite3_analyzer" ]; installPhase = "install -Dt $out/bin sqlite3_analyzer"; meta = with stdenv.lib; { description = "A tool that shows statistics about SQLite databases"; downloadPage = http://sqlite.org/download.html; homepage = http://www.sqlite.org; license = licenses.publicDomain; maintainers = with maintainers; [ pesterhazy ]; platforms = platforms.unix; }; }