about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/interpreters/gtk-server/default.nix
blob: 4a8330f2749c7146ac85ed79eea64efdb78df9ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchurl
, glib
, gtk3
, libffcall
, pkgconfig
, wrapGAppsHook
}:

stdenv.mkDerivation rec {
  pname = "gtk-server";
  version = "2.4.5";

  src = fetchurl {
    url = "https://www.gtk-server.org/stable/gtk-server-${version}.tar.gz";
    sha256 = "0vlx5ibvc7hyc8yipjgvrx1azvmh42i9fv1khg3dvn09nrdkrc7f";
  };

  preConfigure = ''
    cd src
  '';

  nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
  buildInputs = [ libffcall glib gtk3 ];

  configureOptions = [ "--with-gtk3" ];

  meta = with stdenv.lib; {
    description = "gtk-server for interpreted GUI programming";
    homepage = "http://www.gtk-server.org/";
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.tohl ];
    platforms = platforms.linux;
  };
}