python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / zandronum / sqlite.nix
blobc7687f89589d7d3e8e6f4e2d3c1cfe9cae5d3123
1 { lib
2 , stdenv
3 , fetchurl
4 }:
6 stdenv.mkDerivation {
7   pname = "sqlite-zandronum";
8   version = "3.0";
10   src = fetchurl {
11     url = "https://www.sqlite.org/2017/sqlite-autoconf-3180000.tar.gz";
12     hash = "sha256-N1dhJGOXbn0IxenwrzAhYT/CS7z+HFEZfWd2uezprFw=";
13   };
15   buildPhase = ''
16     mkdir -p $out
17     cp sqlite3.c $out/
18     cp sqlite3.h $out/
19     cp sqlite3ext.h $out/
20   '';
22   meta = {
23     homepage = "http://www.sqlite.org/";
24     description = "A single C code file, named sqlite3.c, that contains all C code for the core SQLite library and the FTS3 and RTREE extensions";
25     platforms = lib.platforms.unix;
26     maintainers = [ lib.maintainers.lassulus ];
27   };