2012-07-10 18:03:13 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, cairo, libxml2, libxslt, gnome3, pango
|
2014-01-10 01:13:17 +01:00
|
|
|
, gnome_doc_utils, intltool, libX11, which, itstool }:
|
2012-07-10 18:03:13 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2014-01-10 01:13:17 +01:00
|
|
|
versionMajor = "3.8";
|
2012-07-10 18:03:13 +02:00
|
|
|
versionMinor = "0";
|
|
|
|
|
|
|
|
name = "zenity-${versionMajor}.${versionMinor}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/zenity/${versionMajor}/zenity-${versionMajor}.${versionMinor}.tar.xz";
|
2014-01-10 01:13:17 +01:00
|
|
|
sha256 = "0gsnwvhsqqba5i6d4jh86j29q4q18hmvhj9c1v76vwlj2nvz1ywl";
|
2012-07-10 18:03:13 +02:00
|
|
|
};
|
|
|
|
|
2014-01-10 01:13:17 +01:00
|
|
|
buildInputs = [ gnome3.gtk libxml2 libxslt libX11 itstool ];
|
2012-07-10 18:03:13 +02:00
|
|
|
|
2013-02-21 20:21:00 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which ];
|
2014-01-10 01:13:17 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2012-07-10 18:03:13 +02:00
|
|
|
}
|