nixpkgs/pkgs/desktops/gnome-2/platform/libIDL/default.nix
Yury G. Kudryashov e60fe8673b gnome: use callPackage, move to gnome-2
gnome28 was a mix of packages from various releases, so do not mention 2.28 in
the attribute name.

svn path=/nixpkgs/trunk/; revision=29721
2011-10-08 16:58:32 +00:00

11 lines
332 B
Nix

{stdenv, fetchurl, flex, bison, pkgconfig, glib, gettext ? null}:
stdenv.mkDerivation {
name = "libIDL-0.8.13";
src = fetchurl {
url = mirror://gnome/sources/libIDL/0.8/libIDL-0.8.13.tar.bz2;
sha256 = "0w9b4q5sllwncz498sj5lmc3ajzc8x74dy0jy27m2yg9v887xk5w";
};
buildInputs = [ flex bison pkgconfig glib gettext ];
}