mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
gtk-mac-integration: init at 2.0.8
This commit is contained in:
parent
0f67005c4a
commit
ea053cad7a
2 changed files with 34 additions and 0 deletions
30
pkgs/development/libraries/gtk-mac-integration/default.nix
Normal file
30
pkgs/development/libraries/gtk-mac-integration/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, glib, gtk_doc, gtk }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gtk-mac-integration-2.0.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "GNOME";
|
||||
repo = "gtk-mac-integration";
|
||||
rev = "79e708870cdeea24ecdb036c77b4630104ae1776";
|
||||
sha256 = "1fbhnvj0rqc3089ypvgnpkp6ad2rr37v5qk38008dgamb9h7f3qs";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig gtk_doc ];
|
||||
buildInputs = [ glib gtk ];
|
||||
|
||||
preAutoreconf = ''
|
||||
gtkdocize
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Provides integration for Gtk+ applications into the Mac desktop";
|
||||
|
||||
license = licenses.lgpl21;
|
||||
|
||||
homepage = https://wiki.gnome.org/Projects/GTK+/OSX/Integration;
|
||||
|
||||
maintainers = [ maintainers.matthewbauer ];
|
||||
platforms = platforms.darwin;
|
||||
};
|
||||
}
|
|
@ -7515,6 +7515,10 @@ in
|
|||
|
||||
gtk-sharp-beans = callPackage ../development/libraries/gtk-sharp-beans { };
|
||||
|
||||
gtk-mac-integration = callPackage ../development/libraries/gtk-mac-integration {
|
||||
gtk = gtk2;
|
||||
};
|
||||
|
||||
gtkspell2 = callPackage ../development/libraries/gtkspell { };
|
||||
|
||||
gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };
|
||||
|
|
Loading…
Reference in a new issue