nixpkgs/pkgs/desktops/gnome-3/core/zenity/default.nix

20 lines
518 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, cairo, libxml2, libxslt, gnome3, pango
2017-02-26 11:23:45 +01:00
, gnome_doc_utils, intltool, libX11, which, itstool, wrapGAppsHook }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
preBuild = ''
mkdir -p $out/include
'';
buildInputs = [ gnome3.gtk libxml2 libxslt libX11 itstool ];
2017-02-26 11:23:45 +01:00
nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which wrapGAppsHook ];
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = gnome3.maintainers;
};
}