Adding gtkdialog.
svn path=/nixpkgs/trunk/; revision=15224
This commit is contained in:
parent
a6e86e241f
commit
ff0483b3d8
|
@ -0,0 +1,18 @@
|
||||||
|
{stdenv, fetchurl, gtk, pkgconfig}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "gtkdialog-0.7.9";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = ftp://linux.pte.hu/pub/gtkdialog/gtkdialog-0.7.9.tar.gz;
|
||||||
|
sha256 = "142k8fnh1b8jclm7my2rhk7n8j1b0xh76b2gg712r738r94qwka2";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ gtk pkgconfig ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://linux.pte.hu/~pipas/gtkdialog/;
|
||||||
|
description = "Small utility for fast and easy GUI building from many scripted and compiled languages";
|
||||||
|
license = "GPLv2+";
|
||||||
|
};
|
||||||
|
}
|
|
@ -2502,6 +2502,11 @@ let
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gtkdialog = import ../development/tools/misc/gtkdialog {
|
||||||
|
inherit fetchurl stdenv pkgconfig;
|
||||||
|
inherit (gtkLibs) gtk;
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
hsc2hs = import ../development/tools/misc/hsc2hs {
|
hsc2hs = import ../development/tools/misc/hsc2hs {
|
||||||
inherit bleedingEdgeRepos stdenv;
|
inherit bleedingEdgeRepos stdenv;
|
||||||
|
|
Loading…
Reference in New Issue