3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/interpreters/gtk-server/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
725 B
Nix
Raw Permalink Normal View History

{ lib
, stdenv
, fetchurl
, glib
, gtk3
, libffcall
, pkg-config
, wrapGAppsHook
}:
2015-10-02 23:45:30 +01:00
stdenv.mkDerivation rec {
pname = "gtk-server";
2023-03-27 05:31:27 +01:00
version = "2.4.6";
2015-10-02 23:45:30 +01:00
src = fetchurl {
url = "https://www.gtk-server.org/stable/gtk-server-${version}.tar.gz";
2023-03-27 05:31:27 +01:00
sha256 = "sha256-sFL3y068oXDKgkEUcNnGVsNSPBdI1NzpsqdYJfmOQoA=";
2015-10-02 23:45:30 +01:00
};
preConfigure = ''
cd src
'';
2015-10-02 23:45:30 +01:00
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
buildInputs = [ libffcall glib gtk3 ];
2015-10-02 23:45:30 +01:00
configureOptions = [ "--with-gtk3" ];
2019-01-04 19:33:50 +00:00
meta = with lib; {
homepage = "http://www.gtk-server.org/";
description = "gtk-server for interpreted GUI programming";
license = licenses.gpl2Plus;
maintainers = [ ];
platforms = platforms.linux;
2015-10-02 23:45:30 +01:00
};
}