nixpkgs/pkgs/desktops/gnome-3/core/zenity/default.nix

51 lines
933 B
Nix
Raw Normal View History

{ stdenv
, fetchurl
, pkgconfig
, libxml2
, gnome3
, gtk3
, yelp-tools
, gettext
, libX11
, itstool
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "zenity";
2019-03-24 07:35:56 -07:00
version = "3.32.0";
src = fetchurl {
url = "mirror://gnome/sources/zenity/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2019-03-24 07:35:56 -07:00
sha256 = "15fdh8xfdhnwcynyh4byx3mrjxbyprqnwxzi7qn3g5wwaqryg1p7";
};
nativeBuildInputs = [
pkgconfig
gettext
yelp-tools
itstool
libxml2
wrapGAppsHook
];
buildInputs = [
gtk3
libX11
];
2019-02-13 13:47:50 -08:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "zenity";
attrPath = "gnome3.zenity";
};
};
meta = with stdenv.lib; {
description = "Tool to display dialogs from the commandline and shell scripts";
homepage = "https://wiki.gnome.org/Projects/Zenity";
platforms = platforms.linux;
maintainers = teams.gnome.members;
};
}