nixpkgs/pkgs/development/libraries/sptk/default.nix
2022-12-28 13:38:48 +00:00

32 lines
629 B
Nix

{ lib
, stdenv
, cmake
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "sptk";
version = "4.1";
src = fetchFromGitHub {
owner = "sp-nitech";
repo = "SPTK";
rev = "v${version}";
hash = "sha256-t8XVdKrrewfqefUnEz5xHgRHF0NThNQD1KGPMLOO/o8=";
};
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 ];
};
}