mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 13:15:30 +03:00
Merge pull request #146328 from SuperSandro2000/sqlite3
This commit is contained in:
commit
1a04b0470d
1 changed files with 2 additions and 3 deletions
|
@ -1,10 +1,8 @@
|
||||||
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline ? null, ncurses ? null
|
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline, ncurses
|
||||||
, python3Packages
|
, python3Packages
|
||||||
, enableDeserialize ? false
|
, enableDeserialize ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert interactive -> readline != null && ncurses != null;
|
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -93,6 +91,7 @@ stdenv.mkDerivation rec {
|
||||||
downloadPage = "https://sqlite.org/download.html";
|
downloadPage = "https://sqlite.org/download.html";
|
||||||
homepage = "https://www.sqlite.org/";
|
homepage = "https://www.sqlite.org/";
|
||||||
license = licenses.publicDomain;
|
license = licenses.publicDomain;
|
||||||
|
mainProgram = "sqlite3";
|
||||||
maintainers = with maintainers; [ eelco np ];
|
maintainers = with maintainers; [ eelco np ];
|
||||||
platforms = platforms.unix ++ platforms.windows;
|
platforms = platforms.unix ++ platforms.windows;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue