multimon-ng: add sox as dependency
This commit is contained in:
parent
e7f35e03ab
commit
d51aa069be
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, libpulseaudio, libX11 }:
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, libpulseaudio, libX11, makeWrapper, sox }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "multimon-ng";
|
||||
|
@ -13,7 +13,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = lib.optionals stdenv.isLinux [ libpulseaudio libX11 ];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
nativeBuildInputs = [ cmake makeWrapper ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/multimon-ng --prefix PATH : "${lib.makeBinPath [sox]}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multimon is a digital baseband audio protocol decoder";
|
||||
|
|
Loading…
Reference in a new issue