nixpkgs-suyu/pkgs/games/zandronum/sqlite.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
670 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
}:
2015-06-12 01:28:41 +02:00
stdenv.mkDerivation {
2021-06-22 23:44:58 +02:00
pname = "sqlite-zandronum";
version = "3.0";
2015-06-12 01:28:41 +02:00
src = fetchurl {
url = "https://www.sqlite.org/2017/sqlite-autoconf-3180000.tar.gz";
hash = "sha256-N1dhJGOXbn0IxenwrzAhYT/CS7z+HFEZfWd2uezprFw=";
2015-06-12 01:28:41 +02:00
};
buildPhase = ''
mkdir -p $out
cp sqlite3.c $out/
cp sqlite3.h $out/
cp sqlite3ext.h $out/
'';
meta = {
homepage = "http://www.sqlite.org/";
2015-06-12 01:28:41 +02:00
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";
2021-01-15 05:31:39 +01:00
platforms = lib.platforms.unix;
2015-06-12 01:28:41 +02:00
maintainers = [ lib.maintainers.lassulus ];
};
}