3
0
Fork 0
forked from mirrors/nixpkgs

libgit2-glib: Fix build after gnome3.gnome_common changes

This commit is contained in:
Luca Bruno 2014-02-18 13:22:02 +01:00
parent 4b201b27bf
commit 5181cbd7c6
2 changed files with 4 additions and 4 deletions

View file

@ -113,6 +113,6 @@ rec {
gitg = callPackage ./misc/gitg { }; gitg = callPackage ./misc/gitg { };
libgit2-glib = callPackage ./misc/libgit2-glib { automake = pkgs.automake111x; }; libgit2-glib = callPackage ./misc/libgit2-glib { };
} }

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, which, gnome3, autoconf, automake, libtool, pkgconfig { stdenv, fetchurl, gnome3, libtool, pkgconfig
, gtk_doc, gobjectIntrospection, libgit2, glib }: , gtk_doc, gobjectIntrospection, libgit2, glib }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -12,8 +12,8 @@ stdenv.mkDerivation rec {
configureScript = "sh ./autogen.sh"; configureScript = "sh ./autogen.sh";
buildInputs = [ which gnome3.gnome_common autoconf automake libtool buildInputs = [ gnome3.gnome_common libtool pkgconfig
pkgconfig gtk_doc gobjectIntrospection libgit2 glib ]; gtk_doc gobjectIntrospection libgit2 glib ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
platforms = platforms.linux; platforms = platforms.linux;