in-formant: init at 2021-06-30
This commit is contained in:
parent
f584ae3750
commit
e694aebd10
2 changed files with 47 additions and 0 deletions
45
pkgs/applications/audio/in-formant/default.nix
Normal file
45
pkgs/applications/audio/in-formant/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ stdenv, cmake, lib, fetchFromGitHub, qt5, fftw, libtorch-bin, portaudio, eigen
|
||||||
|
, xorg, pkg-config, autoPatchelfHook, soxr
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "in-formant";
|
||||||
|
version = "2021-06-30";
|
||||||
|
|
||||||
|
# no Qt6 yet, so we're stuck in the last Qt5-supporting commit: https://github.com/NixOS/nixpkgs/issues/108008
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "in-formant";
|
||||||
|
repo = "in-formant";
|
||||||
|
rev = "e28e628cf5ff0949a7b046d220cc884f6035f31a";
|
||||||
|
sha256 = "sha256-YvtV0wGUNmI/+GGxrIfTk/l8tqUsWgc/LAI17X+AWGI=";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkg-config qt5.wrapQtAppsHook autoPatchelfHook ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qt5.qtbase
|
||||||
|
qt5.qtquickcontrols
|
||||||
|
qt5.qtquickcontrols2
|
||||||
|
qt5.qtcharts
|
||||||
|
fftw
|
||||||
|
libtorch-bin
|
||||||
|
portaudio
|
||||||
|
eigen
|
||||||
|
xorg.libxcb
|
||||||
|
soxr
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp in-formant $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A real-time pitch and formant tracking software";
|
||||||
|
homepage = "https://github.com/in-formant/in-formant";
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ ckie ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6279,6 +6279,8 @@ with pkgs;
|
||||||
|
|
||||||
imgurbash2 = callPackage ../tools/graphics/imgurbash2 { };
|
imgurbash2 = callPackage ../tools/graphics/imgurbash2 { };
|
||||||
|
|
||||||
|
in-formant = callPackage ../applications/audio/in-formant { };
|
||||||
|
|
||||||
inadyn = callPackage ../tools/networking/inadyn { };
|
inadyn = callPackage ../tools/networking/inadyn { };
|
||||||
|
|
||||||
incron = callPackage ../tools/system/incron { };
|
incron = callPackage ../tools/system/incron { };
|
||||||
|
|
Loading…
Reference in a new issue