mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
20 lines
625 B
Nix
20 lines
625 B
Nix
{ stdenv, fetchurlGnome, pkgconfig, libxml2, xlibs, glib, pango
|
|
, intltool, libgnome, libgnomecanvas, libbonoboui, GConf, libtool
|
|
, gnome_vfs, libgnome_keyring, libglade }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = src.pkgname;
|
|
|
|
src = fetchurlGnome {
|
|
project = "libgnomeui";
|
|
major = "2"; minor = "24"; patchlevel = "5";
|
|
sha256 = "03rwbli76crkjl6gp422wrc9lqpl174k56cp9i96b7l8jlj2yddf";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
buildInputs =
|
|
[ xlibs.xlibs libxml2 GConf pango glib libgnome_keyring libglade libtool ];
|
|
|
|
propagatedBuildInputs = [ libgnome libbonoboui libgnomecanvas gnome_vfs ];
|
|
}
|