yad: 0.40.0 -> 0.42.0
This commit is contained in:
parent
d260277928
commit
84419d935d
@ -1,31 +1,40 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, intltool, gtk2, hicolor-icon-theme
|
{ stdenv, fetchFromGitHub, pkgconfig, intltool, autoreconfHook, wrapGAppsHook
|
||||||
, wrapGAppsHook }:
|
, gtk3, hicolor-icon-theme, netpbm }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "yad-0.40.0";
|
pname = "yad";
|
||||||
|
version = "0.42.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/yad-dialog/files/${name}.tar.xz";
|
owner = "v1cont";
|
||||||
sha256 = "1x0fsv8nfkm8lchdawnf3zw79jaqbnvhv87sk5r8g86knv8vgl62";
|
repo = "yad";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0ym8pgbzx7ydk5rmi2kwwdyzi6pdpcps86i0c20cqcjmqh8kdl36";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--enable-icon-browser"
|
"--enable-icon-browser"
|
||||||
|
"--with-gtk=gtk3"
|
||||||
|
"--with-rgb=${placeholder "out"}/share/yad/rgb.txt"
|
||||||
];
|
];
|
||||||
|
|
||||||
# for gcc5: c11 inline semantics breaks the build
|
buildInputs = [ gtk3 hicolor-icon-theme ];
|
||||||
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
|
||||||
|
|
||||||
buildInputs = [ gtk2 hicolor-icon-theme ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig intltool wrapGAppsHook ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
sed -i src/file.c -e '21i#include <glib/gprintf.h>'
|
sed -i src/file.c -e '21i#include <glib/gprintf.h>'
|
||||||
sed -i src/form.c -e '21i#include <stdlib.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
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
postAutoreconf = ''
|
||||||
|
intltoolize
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
homepage = https://sourceforge.net/projects/yad-dialog/;
|
homepage = https://sourceforge.net/projects/yad-dialog/;
|
||||||
description = "GUI dialog tool for shell scripts";
|
description = "GUI dialog tool for shell scripts";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -34,9 +43,8 @@ stdenv.mkDerivation rec {
|
|||||||
dialogs, pop-up menu in notification icon and more.
|
dialogs, pop-up menu in notification icon and more.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
license = licenses.gpl3;
|
||||||
maintainers = with stdenv.lib.maintainers; [ smironov ];
|
maintainers = with maintainers; [ smironov ];
|
||||||
license = stdenv.lib.licenses.gpl3;
|
platforms = with platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user