nixpkgs/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix
Franz Pletz aff1f4ab94 Use general hardening flag toggle lists
The following parameters are now available:

  * hardeningDisable
    To disable specific hardening flags
  * hardeningEnable
    To enable specific hardening flags

Only the cc-wrapper supports this right now, but these may be reused by
other wrappers, builders or setup hooks.

cc-wrapper supports the following flags:

  * fortify
  * stackprotector
  * pie (disabled by default)
  * pic
  * strictoverflow
  * format
  * relro
  * bindnow
2016-03-05 18:55:26 +01:00

33 lines
785 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl }:
let
major = "5.2";
minor = "2";
in stdenv.mkDerivation rec {
version = "${major}.${minor}";
name = "libgda-${version}";
src = fetchurl {
url = "mirror://gnome/sources/libgda/${major}/${name}.tar.xz";
sha256 = "c9b8b1c32f1011e47b73c5dcf36649aaef2f1edaa5f5d75be20d9caadc2bc3e4";
};
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;
};
}