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
15 lines
410 B
Nix
15 lines
410 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk, intltool, libart_lgpl, libglade }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgnomecanvas-2.26.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/libgnomecanvas/2.26/libgnomecanvas-2.26.0.tar.bz2;
|
|
sha256 = "13f5rf5pkp9hnyxzvssrxnlykjaixa7vrig9a7v06wrxqfn81d40";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig intltool libglade ];
|
|
|
|
propagatedBuildInputs = [ libart_lgpl gtk ];
|
|
}
|