mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
libgig: Configure script warns about missing libuuid
This commit is contained in:
parent
3f426f6f55
commit
63f7d53572
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchsvn, autoconf, automake, libsndfile, libtool, pkgconfig }:
|
||||
{ stdenv, fetchsvn, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libgig-svn-${version}";
|
||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0i7sj3zm6banl5avjdxblx0mlbxxzbsbr4x5hsl2fhrdsv5dnxhc";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake libsndfile libtool pkgconfig ];
|
||||
buildInputs = [ autoconf automake libsndfile libtool pkgconfig libuuid ];
|
||||
|
||||
preConfigure = "make -f Makefile.cvs";
|
||||
|
||||
|
|
Loading…
Reference in a new issue