mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
32 lines
629 B
Nix
32 lines
629 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|