mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
Merge pull request #146328 from SuperSandro2000/sqlite3
This commit is contained in:
commit
1a04b0470d
|
@ -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…
Reference in a new issue