2018-05-27 06:43:26 +01:00
|
|
|
{ stdenv, fetchurl, unzip, sqlite, tcl }:
|
|
|
|
|
|
|
|
let
|
|
|
|
archiveVersion = import ./archive-version.nix stdenv.lib;
|
|
|
|
in
|
2018-05-22 22:47:18 +01:00
|
|
|
|
2018-05-22 21:43:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sqlite-analyzer";
|
2019-10-21 16:34:20 +01:00
|
|
|
version = "3.30.0";
|
2018-05-27 06:43:26 +01:00
|
|
|
|
|
|
|
src = assert version == sqlite.version; fetchurl {
|
2019-02-22 20:39:12 +00:00
|
|
|
url = "https://sqlite.org/2019/sqlite-src-${archiveVersion version}.zip";
|
2019-10-21 16:34:20 +01:00
|
|
|
sha256 = "0d4i87q0f618pmrgax0mr5x7m8bywikrwjvixag3biyhgl5rx7fd";
|
2018-05-27 06:43:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
buildInputs = [ tcl ];
|
2018-05-22 21:43:04 +01:00
|
|
|
|
|
|
|
makeFlags = [ "sqlite3_analyzer" ];
|
2018-05-27 06:43:26 +01:00
|
|
|
|
2018-05-22 21:43:04 +01:00
|
|
|
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;
|
2019-04-27 00:45:51 +01:00
|
|
|
homepage = https://www.sqlite.org;
|
2018-08-11 13:32:05 +01:00
|
|
|
license = licenses.publicDomain;
|
2018-05-22 21:43:04 +01:00
|
|
|
maintainers = with maintainers; [ pesterhazy ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|