2018-02-25 02:23:58 +00:00
|
|
|
{stdenv, fetchurl, gtk2, pkgconfig, hicolor-icon-theme }:
|
2009-04-21 20:47:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-09-13 23:10:17 +01:00
|
|
|
name = "gtkdialog-0.8.3";
|
2009-04-21 20:47:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-27 00:44:19 +01:00
|
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/gtkdialog/gtkdialog-0.8.3.tar.gz";
|
2013-09-13 23:10:17 +01:00
|
|
|
sha256 = "ff89d2d7f1e6488e5df5f895716ac1d4198c2467a2a5dc1f51ab408a2faec38e";
|
2009-04-21 20:47:30 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ gtk2 hicolor-icon-theme ];
|
2009-04-21 20:47:30 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-10-27 00:44:19 +01:00
|
|
|
homepage = https://code.google.com/archive/p/gtkdialog/;
|
|
|
|
# community links: http://murga-linux.com/puppy/viewtopic.php?t=111923 -> https://github.com/01micko/gtkdialog
|
2009-04-21 20:47:30 +01:00
|
|
|
description = "Small utility for fast and easy GUI building from many scripted and compiled languages";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-04-21 20:47:30 +01:00
|
|
|
};
|
|
|
|
}
|