Unverified Commit 1a04b047 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #146328 from SuperSandro2000/sqlite3

parents d09e2233 84432ac3
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline ? null, ncurses ? null
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline, ncurses
, python3Packages
, enableDeserialize ? false
}:

assert interactive -> readline != null && ncurses != null;

with lib;

let
@@ -93,6 +91,7 @@ stdenv.mkDerivation rec {
    downloadPage = "https://sqlite.org/download.html";
    homepage = "https://www.sqlite.org/";
    license = licenses.publicDomain;
    mainProgram = "sqlite3";
    maintainers = with maintainers; [ eelco np ];
    platforms = platforms.unix ++ platforms.windows;
  };