ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / gu / guile-sqlite3 / package.nix
blob1e7e737f1725c27e39ab4dc7f3e143a0ea9d4961
2   lib,
3   autoreconfHook,
4   fetchFromGitea,
5   guile,
6   pkg-config,
7   sqlite,
8   stdenv,
9   texinfo,
12 stdenv.mkDerivation (finalAttrs: {
13   pname = "guile-sqlite3";
14   version = "0.1.3";
16   src = fetchFromGitea {
17     domain = "notabug.org";
18     owner = "guile-sqlite3";
19     repo = "guile-sqlite3";
20     rev = "v${finalAttrs.version}";
21     hash = "sha256-C1a6lMK4O49043coh8EQkTWALrPolitig3eYf+l+HmM=";
22   };
24   nativeBuildInputs = [
25     autoreconfHook
26     guile
27     pkg-config
28     texinfo
29   ];
31   buildInputs = [
32     guile
33     sqlite
34   ];
36   makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
38   strictDeps = true;
40   doCheck = true;
42   enableParallelBuilding = true;
44   meta = {
45     homepage = "https://notabug.org/guile-sqlite3/guile-sqlite3";
46     description = "Guile bindings for the SQLite3 database engine";
47     license = lib.licenses.gpl3Plus;
48     maintainers = with lib.maintainers; [ ];
49     inherit (guile.meta) platforms;
50   };