Add filter_audio
This commit is contained in:
parent
d639a42241
commit
7707d35a08
@ -123,6 +123,7 @@
|
||||
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
||||
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
||||
notthemessiah = "Brian Cohen <brian.cohen.88@gmail.com>";
|
||||
np = "Nicolas Pouillard <np.nix@nicolaspouillard.fr>";
|
||||
nslqqq = "Nikita Mikhailov <nslqqq@gmail.com>";
|
||||
ocharles = "Oliver Charles <ollie@ocharles.org.uk>";
|
||||
offline = "Jaka Hudoklin <jakahudoklin@gmail.com>";
|
||||
|
24
pkgs/development/libraries/filter_audio/default.nix
Normal file
24
pkgs/development/libraries/filter_audio/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, utillinux }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "filter_audio-${version}";
|
||||
version = "76428a6cda43ae77f3936f4527c5f86eb3a5e211";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "irungentoo";
|
||||
repo = "filter_audio";
|
||||
rev = "${version}";
|
||||
sha256 = "0c4wp9a7dzbj9ykfkbsxrkkyy0nz7vyr5map3z7q8bmv9pjylbk9";
|
||||
};
|
||||
|
||||
buildInputs = [ utillinux ];
|
||||
makeFlags = "PREFIX=$(out)";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An easy to use audio filtering library made from webrtc code";
|
||||
homepage = https://github.com/irungentoo/filter_audio;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ np ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -731,6 +731,8 @@ let
|
||||
|
||||
fop = callPackage ../tools/typesetting/fop { };
|
||||
|
||||
filter_audio = callPackage ../development/libraries/filter_audio { };
|
||||
|
||||
gist = callPackage ../tools/text/gist { };
|
||||
|
||||
mcrl = callPackage ../tools/misc/mcrl { };
|
||||
|
Loading…
Reference in New Issue
Block a user