1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

Adding gtkdialog.

svn path=/nixpkgs/trunk/; revision=15224
This commit is contained in:
Lluís Batlle i Rossell 2009-04-21 19:47:30 +00:00
parent a6e86e241f
commit ff0483b3d8
2 changed files with 23 additions and 0 deletions

View file

@ -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+";
};
}

View file

@ -2502,6 +2502,11 @@ let
inherit fetchurl stdenv;
};
gtkdialog = import ../development/tools/misc/gtkdialog {
inherit fetchurl stdenv pkgconfig;
inherit (gtkLibs) gtk;
};
/*
hsc2hs = import ../development/tools/misc/hsc2hs {
inherit bleedingEdgeRepos stdenv;