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

18 lines
485 B
Nix
Raw Normal View History

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