mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
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 {
|
stdenv.mkDerivation rec {
|
||||||
|
name = "yad-0.37.0";
|
||||||
name = "yad-0.25.1";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://yad.googlecode.com/files/${name}.tar.xz";
|
url = "http://sourceforge.net/projects/yad-dialog/files/${name}.tar.xz";
|
||||||
sha256 = "1pljs9799xa2w3y2vjg93gqkv76z0pjh947djd7179yq3kryb57a";
|
sha256 = "0fhqsgml1axaa9avd0hbam5wm77c2c7q1bz4hs7fvyvdnljazvwi";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
@ -16,19 +16,17 @@ stdenv.mkDerivation rec {
|
|||||||
# for gcc5: c11 inline semantics breaks the build
|
# for gcc5: c11 inline semantics breaks the build
|
||||||
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
||||||
|
|
||||||
buildInputs = [ gtk2 ];
|
buildInputs = [ gtk2 hicolor_icon_theme ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig intltool ];
|
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>'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://code.google.com/p/yad/";
|
homepage = "http://yad-dialog.sourceforge.net/";
|
||||||
description = "GUI dialog tool for shell scripts";
|
description = "GUI dialog tool for shell scripts";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Yad (yet another dialog) is a GUI dialog tool for shell scripts. It is a
|
Yad (yet another dialog) is a GUI dialog tool for shell scripts. It is a
|
||||||
|
Loading…
Reference in New Issue
Block a user