nixpkgs/pkgs/desktops/gnome-3/3.20/misc/libgda/default.nix
2016-06-06 20:33:58 +02:00

21 lines
521 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
configureFlags = [
"--enable-gi-system-install=no"
];
enableParallelBuilding = true;
buildInputs = [ pkgconfig intltool itstool libxml2 gtk3 openssl ];
meta = with stdenv.lib; {
description = "Database access library";
homepage = http://www.gnome-db.org/;
license = [ licenses.lgpl2 licenses.gpl2 ];
platforms = platforms.linux;
};
}