sptk: init at 4.0

main
Fabian Affolter 2 years ago
parent 63f15db529
commit 41c46d00e9
  1. 31
      pkgs/development/libraries/sptk/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,31 @@
{ lib
, stdenv
, cmake
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "sptk";
version = "4.0";
src = fetchFromGitHub {
owner = "sp-nitech";
repo = "SPTK";
rev = "v${version}";
hash = "sha256-Be3Pbg+vt/P3FplZN7yBL+HVq/BmzaBcwKOBsbH7r9g=";
};
nativeBuildInputs = [
cmake
];
doCheck = true;
meta = with lib; {
changelog = "https://github.com/sp-nitech/SPTK/releases/tag/v${version}";
description = "Suite of speech signal processing tools";
homepage = "https://github.com/sp-nitech/SPTK";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

@ -29580,6 +29580,8 @@ with pkgs;
sptlrx = callPackage ../applications/audio/sptlrx { };
sptk = callPackage ../development/libraries/sptk { };
squishyball = callPackage ../applications/audio/squishyball {
ncurses = ncurses5;
};

Loading…
Cancel
Save