Merge pull request #146328 from SuperSandro2000/sqlite3

authored by

Sandro and committed by
GitHub
1a04b047 d09e2233

+2 -3
+2 -3
pkgs/development/libraries/sqlite/default.nix
··· 1 - { lib, stdenv, fetchurl, zlib, interactive ? false, readline ? null, ncurses ? null 2 , python3Packages 3 , enableDeserialize ? false 4 }: 5 - 6 - assert interactive -> readline != null && ncurses != null; 7 8 with lib; 9 ··· 93 downloadPage = "https://sqlite.org/download.html"; 94 homepage = "https://www.sqlite.org/"; 95 license = licenses.publicDomain; 96 maintainers = with maintainers; [ eelco np ]; 97 platforms = platforms.unix ++ platforms.windows; 98 };
··· 1 + { lib, stdenv, fetchurl, zlib, interactive ? false, readline, ncurses 2 , python3Packages 3 , enableDeserialize ? false 4 }: 5 6 with lib; 7 ··· 91 downloadPage = "https://sqlite.org/download.html"; 92 homepage = "https://www.sqlite.org/"; 93 license = licenses.publicDomain; 94 + mainProgram = "sqlite3"; 95 maintainers = with maintainers; [ eelco np ]; 96 platforms = platforms.unix ++ platforms.windows; 97 };