summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix
blob: a228d12509b06a7343314b5774478e1b7b4f2ab6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl }:

let
  major = "5.2";
  minor = "4";

in stdenv.mkDerivation rec {
  version = "${major}.${minor}";
  name = "libgda-${version}";

  src = fetchurl {
    url = "mirror://gnome/sources/libgda/${major}/${name}.tar.xz";
    sha256 = "0pkn9dlb53j73ajkhj8lkf5pa26ci1gwl0bcvxdsmjrwb3fkivic";
  };

  configureFlags = [
    "--enable-gi-system-install=no"
  ];

  hardeningDisable = [ "format" ];

  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;
  };
}