depot/third_party/nixpkgs/pkgs/development/interpreters/gtk-server/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

34 lines
741 B
Nix

{ 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;
};
}