nixpkgs/pkgs/applications/misc/glom/default.nix

132 lines
2.6 KiB
Nix
Raw Normal View History

2018-12-02 21:27:11 +00:00
{ stdenv
2020-08-14 12:10:13 +00:00
, fetchurl
2018-12-02 21:27:11 +00:00
, pkgconfig
, autoconf
, automake
, libtool
, mm-common
, intltool
, itstool
, doxygen
, graphviz
, makeFontsConf
, freefont_ttf
, boost
, libxmlxx3
, libxslt
, libgdamm
, libarchive
, libepc
, python3
, ncurses
, glibmm
, gtk3
, openssl
, gtkmm3
, goocanvasmm2
, evince
, isocodes
2020-08-14 12:10:13 +00:00
, gtksourceview
, gtksourceviewmm
2018-12-02 21:27:11 +00:00
, postgresql
, gobject-introspection
2019-11-20 03:30:05 +00:00
, yelp-tools
2018-12-02 21:27:11 +00:00
, wrapGAppsHook
}:
let
gda = libgdamm.override {
mysqlSupport = true;
postgresSupport = true;
};
python = python3.withPackages (pkgs: with pkgs; [ pygobject3 ]);
sphinx-build = python3.pkgs.sphinx.overrideAttrs (super: {
postFixup = super.postFixup or "" + ''
# Do not propagate Python
rm $out/nix-support/propagated-build-inputs
'';
});
boost_python = boost.override { enablePython = true; inherit python; };
in stdenv.mkDerivation rec {
pname = "glom";
2020-08-14 12:10:13 +00:00
version = "1.32.0";
2018-12-02 21:27:11 +00:00
outputs = [ "out" "lib" "dev" "doc" "devdoc" ];
2020-08-14 12:10:13 +00:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1wcd4kd3crwqjv0jfp73jkyyf5ws8mvykg37kqxmcb58piz21gsk";
2018-12-02 21:27:11 +00:00
};
nativeBuildInputs = [
pkgconfig
autoconf
automake
libtool
mm-common
intltool
2019-11-20 03:30:05 +00:00
yelp-tools
2018-12-02 21:27:11 +00:00
itstool
doxygen
graphviz
sphinx-build
wrapGAppsHook
gobject-introspection # for setup hook
];
buildInputs = [
boost_python
glibmm
gtk3
openssl
libxmlxx3
libxslt
gda
libarchive
libepc
python
ncurses # for python
gtkmm3
goocanvasmm2
evince
isocodes
python3.pkgs.pygobject3
2020-08-14 12:10:13 +00:00
gtksourceview
gtksourceviewmm
2018-12-02 21:27:11 +00:00
postgresql # for pg_config
];
enableParallelBuilding = true;
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
configureFlags = [
"--with-boost-python=boost_python${stdenv.lib.versions.major python3.version}${stdenv.lib.versions.minor python3.version}"
];
makeFlags = [
"libdocdir=${placeholder "doc"}/share/doc/$(book_name)"
"devhelpdir=${placeholder "devdoc"}/share/devhelp/books/$(book_name)"
];
# Fontconfig error: Cannot load default config file
FONTCONFIG_FILE = makeFontsConf {
fontDirectories = [ freefont_ttf ];
};
preFixup = ''
gappsWrapperArgs+=(
--prefix PYTHONPATH : "${placeholder "out"}/${python3.sitePackages}"
--set PYTHONHOME "${python}"
)
'';
meta = with stdenv.lib; {
description = "An easy-to-use database designer and user interface";
homepage = "http://www.glom.org/";
2018-12-02 21:27:11 +00:00
license = [ licenses.lgpl2 licenses.gpl2 ];
maintainers = teams.gnome.members;
2018-12-02 21:27:11 +00:00
platforms = platforms.linux;
};
}