Adding libgnomecanvasmm, a dependency for Ardour3
svn path=/nixpkgs/trunk/; revision=27074
This commit is contained in:
parent
9926941bf2
commit
8135f030f0
@ -84,6 +84,11 @@ pkgs.makeOverridable
|
|||||||
inherit intltool libart_lgpl libglade;
|
inherit intltool libart_lgpl libglade;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libgnomecanvasmm = import ./platform/libgnomecanvasmm {
|
||||||
|
inherit (pkgs) stdenv fetchurl pkgconfig;
|
||||||
|
inherit libgnomecanvas gtkmm;
|
||||||
|
};
|
||||||
|
|
||||||
# for git-head builds
|
# for git-head builds
|
||||||
gnome_common = import platform/gnome-common {
|
gnome_common = import platform/gnome-common {
|
||||||
inherit (pkgs) stdenv fetchgit pkgconfig
|
inherit (pkgs) stdenv fetchgit pkgconfig
|
||||||
|
@ -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 ];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user