nixpkgs/pkgs/development/libraries/sonic/default.nix
2020-04-10 17:54:53 +01:00

28 lines
672 B
Nix

{ stdenv, fetchFromGitHub, fftw }:
stdenv.mkDerivation {
pname = "sonic";
version = "2018-07-06";
src = fetchFromGitHub {
owner = "waywardgeek";
repo = "sonic";
rev = "71c51195de71627d7443d05378c680ba756545e8";
sha256 = "1z9qdk3pk507hdg39v2z1hanlw2wv7mhn8br4cb8qry9z9qwi87i";
};
postPatch = ''
sed -i "s,^PREFIX=.*,PREFIX=$out," Makefile
'';
buildInputs = [ fftw ];
meta = with stdenv.lib; {
description = "Simple library to speed up or slow down speech";
homepage = "https://github.com/waywardgeek/sonic";
license = licenses.asl20;
maintainers = with maintainers; [ aske ];
platforms = platforms.linux;
};
}