about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/lpcnetfreedv/default.nix
blob: b3b1d7059d81b83137242362437ca1888172880a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, stdenv, fetchFromGitHub, fetchurl, cmake, codec2 }:

let
  dataVersion = "191005_v1.0";
  data = fetchurl {
    url = "http://rowetel.com/downloads/deep/lpcnet_${dataVersion}.tgz";
    sha256 = "sha256-UJRAkkdR/dh/+qVoPuPd3ZN69cgzuRBMzOZdUWFJJsg=";
  };
in
stdenv.mkDerivation rec {
  pname = "lpcnetfreedv";
  version = "unstable-2022-08-22";

  src = fetchFromGitHub {
    owner = "drowe67";
    repo = "LPCNet";
    rev = "67a6eb74d0c07faddcdce199856862cc45779d25";
    sha256 = "sha256-eHYZoDgoZBuuLvQn9X7H/zmK5onOAniOgY1/8RVn8gk=";
  };

  nativeBuildInputs = [ cmake ];

  postPatch = ''
    mkdir build
    ln -s ${data} build/lpcnet_${dataVersion}.tgz
  '';

  meta = with lib; {
    homepage = "https://freedv.org/";
    description = "Experimental Neural Net speech coding for FreeDV";
    license = licenses.bsd3;
    maintainers = with maintainers; [ mvs ];
    platforms = platforms.all;
  };
}