nixpkgs/pkgs/development/libraries/filter-audio/default.nix
Lluís Batlle i Rossell 66d7126255 Take me (viric) out of most maintenance
Since years I'm not maintaining anything of the list below other
than some updates when I needed them for some reason. Other people
is doing that maintenance on my behalf so I better take me out but
for very few packages. Finally!
2018-07-22 21:50:19 +02:00

27 lines
569 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "filter-audio-${version}";
version = "0.0.1";
src = fetchFromGitHub {
owner = "irungentoo";
repo ="filter_audio";
rev = "v${version}";
sha256 = "1dv4pram317c1w97cjsv9f6r8cdxhgri7ib0v364z08pk7r2avfn";
};
doCheck = false;
makeFlags = "PREFIX=$(out)";
meta = with stdenv.lib; {
description = "Lightweight audio filtering library made from webrtc code";
license = licenses.bsd3;
maintainers = with maintainers; [ jgeerds ];
platforms = platforms.all;
};
}