1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/desktops/gnome-2/platform/gtkhtml/default.nix

21 lines
638 B
Nix
Raw Normal View History

2019-03-03 21:30:31 +00:00
{ stdenv, fetchurl, pkgconfig, gtk2, intltool,
GConf, enchant, isocodes, gnome_icon_theme }:
stdenv.mkDerivation rec {
name = "gtkhtml-3.32.2";
src = fetchurl {
url = "mirror://gnome/sources/gtkhtml/3.32/${name}.tar.bz2";
sha256 = "17z3jwvpn8waz7bhwrk7a6vs9pad6sqmlxxcqwvxxq89ywy0ail7";
};
#From Debian, fixes build issue described here:
#http://www.mail-archive.com/debian-bugs-rc@lists.debian.org/msg250091.html
patches = [ ./01_remove-disable-deprecated.patch ];
nativeBuildInputs = [ pkgconfig ];
2019-03-03 21:30:31 +00:00
buildInputs = [ gtk2 intltool GConf enchant isocodes gnome_icon_theme ];
2019-10-30 01:29:30 +00:00
NIX_LDFLAGS = "-lgthread-2.0";
}