libgdamm: init at 4.99.11
This commit is contained in:
parent
3d5025ba79
commit
3ec683c85e
39
pkgs/development/libraries/libgdamm/default.nix
Normal file
39
pkgs/development/libraries/libgdamm/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchurl, pkgconfig, glibmm, libgda, libxml2, gnome3
|
||||
, mysqlSupport ? false, mysql ? null
|
||||
, postgresSupport ? false, postgresql ? null }:
|
||||
|
||||
let
|
||||
gda = libgda.override {
|
||||
inherit mysqlSupport postgresSupport;
|
||||
};
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "libgdamm";
|
||||
version = "4.99.11";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "1fyh15b3f8hmwbswalxk1g4l04yvvybksn5nm7gznn5jl5q010p9";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ glibmm libxml2 ];
|
||||
propagatedBuildInputs = [ gda ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
packageName = pname;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "C++ bindings for libgda";
|
||||
homepage = http://www.gnome-db.org/;
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = gnome3.maintainers;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -10813,6 +10813,8 @@ in
|
||||
|
||||
libgda = callPackage ../development/libraries/libgda { };
|
||||
|
||||
libgdamm = callPackage ../development/libraries/libgdamm { };
|
||||
|
||||
libgdata = gnome3.libgdata;
|
||||
|
||||
libgig = callPackage ../development/libraries/libgig { };
|
||||
|
Loading…
Reference in New Issue
Block a user