e60fe8673b
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
11 lines
332 B
Nix
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 ];
|
|
}
|