depot/third_party/nixpkgs/pkgs/games/zandronum/sqlite.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

28 lines
670 B
Nix

{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation {
pname = "sqlite-zandronum";
version = "3.0";
src = fetchurl {
url = "https://www.sqlite.org/2017/sqlite-autoconf-3180000.tar.gz";
hash = "sha256-N1dhJGOXbn0IxenwrzAhYT/CS7z+HFEZfWd2uezprFw=";
};
buildPhase = ''
mkdir -p $out
cp sqlite3.c $out/
cp sqlite3.h $out/
cp sqlite3ext.h $out/
'';
meta = {
homepage = "http://www.sqlite.org/";
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";
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.lassulus ];
};
}