1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00
nixpkgs/pkgs/tools/misc/yad/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

2019-04-23 08:56:14 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, intltool, autoreconfHook, wrapGAppsHook
, gtk3, hicolor-icon-theme, netpbm }:
stdenv.mkDerivation rec {
2019-04-23 08:56:14 +01:00
pname = "yad";
2019-11-03 11:31:31 +00:00
version = "5.0";
2019-04-23 08:56:14 +01:00
src = fetchFromGitHub {
owner = "v1cont";
repo = "yad";
rev = "v${version}";
2019-11-03 11:31:31 +00:00
sha256 = "07rd61hvilsxxrj7lf8c9k0a8glj07s48m7ya8d45030r90g3lvc";
};
configureFlags = [
"--enable-icon-browser"
2019-04-23 08:56:14 +01:00
"--with-gtk=gtk3"
"--with-rgb=${placeholder "out"}/share/yad/rgb.txt"
];
2019-04-23 08:56:14 +01:00
buildInputs = [ gtk3 hicolor-icon-theme ];
2019-04-23 08:56:14 +01:00
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>'
2019-04-23 08:56:14 +01:00
# there is no point to bring in the whole netpbm package just for this file
2020-02-25 23:41:09 +00:00
install -Dm644 ${netpbm.out}/share/netpbm/misc/rgb.txt $out/share/yad/rgb.txt
'';
2019-04-23 08:56:14 +01:00
postAutoreconf = ''
intltoolize
'';
meta = with stdenv.lib; {
2018-11-24 18:58:03 +00:00
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.
'';
2019-04-23 08:56:14 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ smironov ];
platforms = with platforms; linux;
};
}