mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
27 lines
599 B
Nix
27 lines
599 B
Nix
|
{stdenv, fetchurl, pkgconfig, gtk}:
|
||
|
|
||
|
assert !isNull pkgconfig && !isNull gtk;
|
||
|
assert !isNull gtk.libtiff;
|
||
|
assert !isNull gtk.libjpeg;
|
||
|
assert !isNull gtk.libpng;
|
||
|
assert !isNull gtk.libpng.zlib;
|
||
|
|
||
|
derivation {
|
||
|
name = "wxGTK-2.4.2";
|
||
|
system = stdenv.system;
|
||
|
|
||
|
builder = ./builder.sh;
|
||
|
src = fetchurl {
|
||
|
url = http://heanet.dl.sourceforge.net/sourceforge/wxwindows/wxGTK-2.4.2.tar.bz2;
|
||
|
md5 = "cdadfe82fc93f8a65a2ae18a95b0b0e3";
|
||
|
};
|
||
|
|
||
|
stdenv = stdenv;
|
||
|
pkgconfig = pkgconfig;
|
||
|
gtk = gtk;
|
||
|
libtiff = gtk.libtiff;
|
||
|
libjpeg = gtk.libjpeg;
|
||
|
libpng = gtk.libpng;
|
||
|
zlib = gtk.libpng.zlib;
|
||
|
}
|