nixpkgs/pkgs/desktops/gnome-2/platform/libgnomecanvas/default.nix

18 lines
487 B
Nix
Raw Normal View History

2021-01-16 18:21:50 -08:00
{ stdenv, fetchurl, pkg-config, gtk2, intltool, libart_lgpl, libglade }:
stdenv.mkDerivation rec {
2015-04-04 22:22:12 -07:00
name = "libgnomecanvas-${minVer}.3";
minVer = "2.30";
src = fetchurl {
url = "mirror://gnome/sources/libgnomecanvas/${minVer}/${name}.tar.bz2";
sha256 = "0h6xvswbqspdifnyh5pm2pqq55yp3kn6yrswq7ay9z49hkh7i6w5";
};
2015-04-04 22:22:12 -07:00
outputs = [ "out" "dev" ];
2016-04-26 18:05:28 -07:00
buildInputs = [ libglade ];
2021-01-16 18:21:50 -08:00
nativeBuildInputs = [ pkg-config intltool ];
2019-03-03 13:30:31 -08:00
propagatedBuildInputs = [ libart_lgpl gtk2 ];
}