yad: a nice zenity clone for creating GUI dialogs from the shell

This commit is contained in:
Sergey Mironov 2014-01-10 01:02:31 +04:00 committed by Rok Garbas
parent 32e08f53ce
commit 0223847b6a
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk2 }:
stdenv.mkDerivation rec {
name = "yad-0.25.1";
src = fetchurl {
url = "http://yad.googlecode.com/files/${name}.tar.xz";
sha256 = "1pljs9799xa2w3y2vjg93gqkv76z0pjh947djd7179yq3kryb57a";
};
configureFlags = [
"--enable-icon-browser"
];
buildInputs = [ gtk2 ];
nativeBuildInputs = [ pkgconfig intltool ];
meta = {
homepage = "http://code.google.com/p/yad/";
description = "Yad (yet another dialog) is a GUI dialog tool for shell scripts";
longDescription = ''
Yad (yet another dialog) is a GUI dialog tool for shell scripts. It is a
fork of Zenity with many improvements, such as custom buttons, additional
dialogs, pop-up menu in notification icon and more.
'';
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [ smironov ];
};
}

View file

@ -10092,6 +10092,8 @@ let
weka = callPackage ../applications/science/math/weka { };
yad = callPackage ../tools/misc/yad { };
yacas = callPackage ../applications/science/math/yacas { };
speedcrunch = callPackage ../applications/science/math/speedcrunch {