mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ stdenv, fetchgit, autoconf, automake, libtool, gtk2, pkgconfig, perlPackages,
|
|
libxml2, gettext, python, libxml2Python, docbook5, docbook_xsl,
|
|
libxslt, intltool, libart_lgpl, withGNOME ? false, libgnomeui, hicolor-icon-theme,
|
|
gtk-mac-integration }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dia-${version}";
|
|
version = "0.97.3.20170622";
|
|
|
|
src = fetchgit {
|
|
url = https://gitlab.gnome.org/GNOME/dia.git;
|
|
rev = "b86085dfe2b048a2d37d587adf8ceba6fb8bc43c";
|
|
sha256 = "1fyxfrzdcs6blxhkw3bcgkksaf3byrsj4cbyrqgb4869k3ynap96";
|
|
};
|
|
|
|
buildInputs =
|
|
[ gtk2 libxml2 gettext python libxml2Python docbook5
|
|
libxslt docbook_xsl libart_lgpl hicolor-icon-theme ]
|
|
++ stdenv.lib.optional withGNOME libgnomeui
|
|
++ stdenv.lib.optional stdenv.isDarwin gtk-mac-integration;
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig intltool ]
|
|
++ (with perlPackages; [ perl XMLParser ]);
|
|
|
|
preConfigure = ''
|
|
NOCONFIGURE=1 ./autogen.sh # autoreconfHook is not enough
|
|
'';
|
|
configureFlags = stdenv.lib.optional withGNOME "--enable-gnome";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Gnome Diagram drawing software";
|
|
homepage = http://live.gnome.org/Dia;
|
|
maintainers = with maintainers; [ raskin ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|