nixpkgs/pkgs/tools/misc/yad/default.nix
2019-04-23 15:56:14 +08:00

51 lines
1.4 KiB
Nix

{ stdenv, fetchFromGitHub, pkgconfig, intltool, autoreconfHook, wrapGAppsHook
, gtk3, hicolor-icon-theme, netpbm }:
stdenv.mkDerivation rec {
pname = "yad";
version = "0.42.0";
src = fetchFromGitHub {
owner = "v1cont";
repo = "yad";
rev = "v${version}";
sha256 = "0ym8pgbzx7ydk5rmi2kwwdyzi6pdpcps86i0c20cqcjmqh8kdl36";
};
configureFlags = [
"--enable-icon-browser"
"--with-gtk=gtk3"
"--with-rgb=${placeholder "out"}/share/yad/rgb.txt"
];
buildInputs = [ gtk3 hicolor-icon-theme ];
nativeBuildInputs = [ autoreconfHook pkgconfig intltool wrapGAppsHook ];
postPatch = ''
sed -i src/file.c -e '21i#include <glib/gprintf.h>'
sed -i src/form.c -e '21i#include <stdlib.h>'
# there is no point to bring in the whole netpbm package just for this file
install -Dm644 ${netpbm}/share/netpbm/misc/rgb.txt $out/share/yad/rgb.txt
'';
postAutoreconf = ''
intltoolize
'';
meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/yad-dialog/;
description = "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.
'';
license = licenses.gpl3;
maintainers = with maintainers; [ smironov ];
platforms = with platforms; linux;
};
}