12 stdenv.mkDerivation (finalAttrs: {
13 pname = "guile-sqlite3";
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=";
36 makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
42 enableParallelBuilding = true;
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;