forked from mirrors/nixpkgs
yad: 0.25.1 -> 0.37.0 and fixup icons
This commit is contained in:
parent
29ec1c6b09
commit
ad10bf6309
|
@ -1,12 +1,12 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool, gtk2 }:
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, gtk2, hicolor_icon_theme
|
||||
, wrapGAppsHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "yad-0.25.1";
|
||||
name = "yad-0.37.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://yad.googlecode.com/files/${name}.tar.xz";
|
||||
sha256 = "1pljs9799xa2w3y2vjg93gqkv76z0pjh947djd7179yq3kryb57a";
|
||||
url = "http://sourceforge.net/projects/yad-dialog/files/${name}.tar.xz";
|
||||
sha256 = "0fhqsgml1axaa9avd0hbam5wm77c2c7q1bz4hs7fvyvdnljazvwi";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
|
@ -16,19 +16,17 @@ stdenv.mkDerivation rec {
|
|||
# for gcc5: c11 inline semantics breaks the build
|
||||
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
||||
|
||||
buildInputs = [ gtk2 ];
|
||||
buildInputs = [ gtk2 hicolor_icon_theme ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
nativeBuildInputs = [ 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>'
|
||||
'';
|
||||
|
||||
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
||||
|
||||
meta = {
|
||||
homepage = "http://code.google.com/p/yad/";
|
||||
homepage = "http://yad-dialog.sourceforge.net/";
|
||||
description = "GUI dialog tool for shell scripts";
|
||||
longDescription = ''
|
||||
Yad (yet another dialog) is a GUI dialog tool for shell scripts. It is a
|
||||
|
|
Loading…
Reference in a new issue