noise-repellent: init at unstable-2018-12-29
This commit is contained in:
parent
d973a1d6f2
commit
fd2f245ef1
29
pkgs/applications/audio/noise-repellent/default.nix
Normal file
29
pkgs/applications/audio/noise-repellent/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, fftwFloat, lv2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "noise-repellent";
|
||||
version = "unstable-2018-12-29";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lucianodato";
|
||||
repo = pname;
|
||||
rev = "9efdd0b41ec184a792087c87cbf5382f455e33ec";
|
||||
sha256 = "0pn9cxapfvb5l62q86bchyfll1290vi0rhrzarb1jpc4ix7kz53c";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
mesonFlags = ("--prefix=${placeholder "out"}/lib/lv2");
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkgconfig ];
|
||||
buildInputs = [
|
||||
fftwFloat lv2
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An lv2 plugin for broadband noise reduction";
|
||||
homepage = https://github.com/lucianodato/noise-repellent;
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "i686-darwin" ];
|
||||
};
|
||||
}
|
@ -5244,6 +5244,9 @@ in
|
||||
|
||||
nnn = callPackage ../applications/misc/nnn { };
|
||||
|
||||
|
||||
noise-repellent = callPackage ../applications/audio/noise-repellent { };
|
||||
|
||||
notary = callPackage ../tools/security/notary { };
|
||||
|
||||
notify-osd = callPackage ../applications/misc/notify-osd { };
|
||||
|
Loading…
Reference in New Issue
Block a user