Adding libgnomecanvasmm, a dependency for Ardour3

svn path=/nixpkgs/trunk/; revision=27074
This commit is contained in:
Cillian de Roiste 2011-05-01 13:45:46 +00:00
parent 9926941bf2
commit 8135f030f0
2 changed files with 17 additions and 0 deletions

View File

@ -84,6 +84,11 @@ pkgs.makeOverridable
inherit intltool libart_lgpl libglade;
};
libgnomecanvasmm = import ./platform/libgnomecanvasmm {
inherit (pkgs) stdenv fetchurl pkgconfig;
inherit libgnomecanvas gtkmm;
};
# for git-head builds
gnome_common = import platform/gnome-common {
inherit (pkgs) stdenv fetchgit pkgconfig

View File

@ -0,0 +1,12 @@
{ stdenv, fetchurl, pkgconfig, libgnomecanvas, gtkmm }:
stdenv.mkDerivation {
name = "libgnomecanvasmm-2.26.0";
src = fetchurl {
url = mirror://gnome/sources/libgnomecanvasmm/2.26/libgnomecanvasmm-2.26.0.tar.bz2;
sha256 = "996577f97f459a574919e15ba7fee6af8cda38a87a98289e9a4f54752d83e918";
};
buildInputs = [ pkgconfig libgnomecanvas gtkmm ];
}