10 stdenv.mkDerivation rec {
15 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${pname}/${pname}-${version}.tar.gz";
16 sha256 = "ff89d2d7f1e6488e5df5f895716ac1d4198c2467a2a5dc1f51ab408a2faec38e";
19 # Pull Gentoo patch for -fno-common toolchain fix.
21 name = "fno-common.patch";
22 url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/x11-misc/gtkdialog/files/gtkdialog-0.8.3-fno-common.patch?id=98692e4c4ad494b88c4902ca1ab3e6541190bbe8";
23 sha256 = "1mh01krzpfy7lbbqx3xm71xsiqqgg67w4snv794wspfqkk2hicvz";
27 nativeBuildInputs = [ pkg-config ];
28 buildInputs = [ gtk2 ];
31 homepage = "https://code.google.com/archive/p/gtkdialog/";
32 # community links: http://murga-linux.com/puppy/viewtopic.php?t=111923 -> https://github.com/01micko/gtkdialog
33 description = "Small utility for fast and easy GUI building from many scripted and compiled languages";
34 mainProgram = "gtkdialog";
35 license = lib.licenses.gpl2Plus;
36 platforms = lib.platforms.linux;