gtk-server: added

This commit is contained in:
Tomas Hlavaty 2015-10-03 00:45:30 +02:00
parent da8b05363b
commit 3a4db8d7e5
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, libffcall, gtk2, pkgconfig }:
stdenv.mkDerivation rec {
v = "2.3.1";
name = "gtk-server-${v}";
src = fetchurl {
url = "mirror://sourceforge/gtk-server/${name}-sr.tar.gz";
sha256 = "0z8ng5rhxc7fpsj3d50h25wkgcnxjfy030jm8r9w9m729w2c9hxb";
};
buildInputs = [ libffcall gtk2 pkgconfig ];
configureOptions = [ "--with-gtk2" ];
meta = {
description = "gtk-server for interpreted GUI programming";
homepage = "http://www.gtk-server.org/";
license = stdenv.lib.licenses.gpl2Plus;
};
}

View File

@ -3994,6 +3994,8 @@ let
gforth = callPackage ../development/compilers/gforth {};
gtk-server = callPackage ../development/interpreters/gtk-server {};
# Haskell and GHC
haskell = callPackage ./haskell-packages.nix { };