treewide: cmake buildInputs to nativeBuildInputs, minor cleanups

This commit is contained in:
Ben Siraphob
2021-01-01 11:52:33 +07:00
parent 54ab07c1fe
commit b04fc593e7
212 changed files with 611 additions and 634 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, speexdsp, pkgconfig }:
{ stdenv, fetchFromGitHub, cmake, speexdsp, pkg-config }:
stdenv.mkDerivation rec {
version = "1.2.4";
@@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
sha256 = "0n81rnm8dm1zmibkr2v3q79rsd609y0dbbsrbay18njcjva88p0g";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake speexdsp ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ speexdsp ];
meta = with stdenv.lib; {
description = "Implementation of the EBU R128 loudness standard";