sqlite: remove error prone ? null inputs, set meta.mainProgram

main
Sandro Jäckel 3 years ago
parent 087657bbf0
commit 84432ac34b
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 5
      pkgs/development/libraries/sqlite/default.nix

@ -1,10 +1,8 @@
{ 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;
};

Loading…
Cancel
Save