nixpkgs/pkgs/desktops/gnome-2/desktop/zenity/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

17 lines
519 B
Nix

{ stdenv, fetchurl, pkgconfig, cairo, libxml2, libxslt, glib, gtk, pango, atk
, gnome_doc_utils, intltool, libglade, libX11, which }:
stdenv.mkDerivation {
name = "zenity-2.32.1";
src = fetchurl {
url = mirror://gnome/sources/zenity/2.32/zenity-2.32.1.tar.bz2;
sha256 = "1b0qxb07wif0ds1pl8xk3fq9p874j89rf718lii4ndh7382bwf48";
};
configureFlags = "--disable-scrollkeeper";
buildInputs = [ gtk libglade libxml2 libxslt libX11 ];
nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which ];
}