Files

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

41 lines
756 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
validatePkgConfig,
libpq,
sqlite,
}:
stdenv.mkDerivation rec {
pname = "virtualpg";
version = "2.0.1";
src = fetchurl {
url = "https://www.gaia-gis.it/gaia-sins/virtualpg-${version}.tar.gz";
hash = "sha256-virr64yf8nQ4IIX1HUIugjhYvKT2vC+pCYFkZMah4Is=";
};
nativeBuildInputs = [
validatePkgConfig
libpq.pg_config
];
buildInputs = [
libpq
sqlite
];
meta = with lib; {
description = "Loadable dynamic extension to both SQLite and SpatiaLite";
homepage = "https://www.gaia-gis.it/fossil/virtualpg";
license = with licenses; [
mpl11
gpl2Plus
lgpl21Plus
];
platforms = platforms.unix;
maintainers = with maintainers; [ sikmir ];
};
}