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:
parent
db42ae4916
commit
c5e0079962
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue