nixpkgs/pkgs/tools/misc/yad/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, intltool, autoreconfHook, wrapGAppsHook
2019-04-23 07:56:14 +00:00
, gtk3, hicolor-icon-theme, netpbm }:
stdenv.mkDerivation rec {
2019-04-23 07:56:14 +00:00
pname = "yad";
2021-03-13 17:14:43 +00:00
version = "8.0";
2019-04-23 07:56:14 +00:00
src = fetchFromGitHub {
owner = "v1cont";
repo = "yad";
rev = "v${version}";
2021-03-13 17:14:43 +00:00
sha256 = "sha256-KntJtli1PtqH/9XOTq4FkVJYklp0L7bChwQQGCBTLDA=";
};
configureFlags = [
"--enable-icon-browser"
2019-04-23 07:56:14 +00:00
"--with-gtk=gtk3"
"--with-rgb=${placeholder "out"}/share/yad/rgb.txt"
];
2019-04-23 07:56:14 +00:00
buildInputs = [ gtk3 hicolor-icon-theme ];
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config 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 07:56:14 +00: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 07:56:14 +00:00
postAutoreconf = ''
intltoolize
'';
meta = with lib; {
2020-04-05 07:25:48 +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 07:56:14 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ smironov ];
platforms = with platforms; linux;
};
}