1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

libvorbis: use pkgconfig instead of guessing paths. Closes #3014

This commit is contained in:
Luca Bruno 2014-06-22 12:39:07 +02:00
parent db42ae4916
commit c5e0079962

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, libogg }:
{ stdenv, fetchurl, libogg, pkgconfig }:
let
name = "libvorbis-1.3.4";
@ -11,6 +11,8 @@ stdenv.mkDerivation {
sha256 = "0wpk87jnhngcl3nc5i39flkycx1sjzilx8jjx4zc4p8r55ylj19g";
};
buildInputs = [ pkgconfig ];
propagatedBuildInputs = [ libogg ];
doCheck = true;