571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
907 B
Nix
36 lines
907 B
Nix
{ lib, stdenv, fetchFromGitHub, fetchurl, cmake }:
|
|
|
|
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;
|
|
};
|
|
}
|