sonic: init at 2016-03-01
This commit is contained in:
parent
d6936f47db
commit
48884e06cc
2 changed files with 27 additions and 0 deletions
25
pkgs/development/libraries/sonic/default.nix
Normal file
25
pkgs/development/libraries/sonic/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sonic-${version}";
|
||||
version = "2016-03-01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "waywardgeek";
|
||||
repo = "sonic";
|
||||
rev = "71bdf26c55716a45af50c667c0335a9519e952dd";
|
||||
sha256 = "1kcl8fdf92kafmfhvyjal5gvkn99brkjyzbi9gw3rd5b30m3xz2b";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i "s,^PREFIX=.*,PREFIX=$out," Makefile
|
||||
'';
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -9418,6 +9418,8 @@ in
|
|||
|
||||
sofia_sip = callPackage ../development/libraries/sofia-sip { };
|
||||
|
||||
sonic = callPackage ../development/libraries/sonic { };
|
||||
|
||||
soprano = callPackage ../development/libraries/soprano { };
|
||||
|
||||
soqt = callPackage ../development/libraries/soqt { };
|
||||
|
|
Loading…
Reference in a new issue