mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
audiofile: move alsaLib from nativeBuildInputs to buildInputs
This commit is contained in:
parent
f1562a4c04
commit
20ba83a196
@ -3,10 +3,12 @@
|
||||
stdenv.mkDerivation rec {
|
||||
name = "audiofile-0.3.6";
|
||||
|
||||
nativeBuildInputs = stdenv.lib.optional stdenv.isLinux alsaLib;
|
||||
|
||||
buildInputs = (stdenv.lib.optional stdenv.isDarwin CoreServices) ++
|
||||
(stdenv.lib.optional stdenv.isDarwin AudioUnit);
|
||||
buildInputs =
|
||||
stdenv.lib.optionals stdenv.isLinux [
|
||||
alsaLib
|
||||
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
||||
CoreServices AudioUnit
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://audiofile.68k.org/${name}.tar.gz";
|
||||
|
Loading…
Reference in New Issue
Block a user