nixpkgs/pkgs/desktops/gnome-2/platform/ORBit2/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

14 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 ];
}