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
13 lines
339 B
Nix
13 lines
339 B
Nix
{stdenv, fetchurl, pkgconfig, glib, libIDL}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ORBit2-2.14.17";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/ORBit2/2.14/ORBit2-2.14.17.tar.bz2;
|
|
sha256 = "0k4px2f949ac7vmj7b155g1rpf7pmvl48sbnkjhlg4wgcwzwxgv2";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs = [ glib libIDL ];
|
|
}
|