deepfilternet: init at 0.5.6
This commit is contained in:
parent
bd645e8668
commit
db815d5e61
2 changed files with 5382 additions and 0 deletions
5341
pkgs/by-name/de/deepfilternet/Cargo.lock
generated
Normal file
5341
pkgs/by-name/de/deepfilternet/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
41
pkgs/by-name/de/deepfilternet/package.nix
Normal file
41
pkgs/by-name/de/deepfilternet/package.nix
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "deepfilternet";
|
||||||
|
version = "0.5.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Rikorose";
|
||||||
|
repo = "DeepFilterNet";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-5bYbfO1kmduNm9YV5niaaPvRIDRmPt4QOX7eKpK+sWY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoLock = {
|
||||||
|
lockFile = ./Cargo.lock;
|
||||||
|
outputHashes = {
|
||||||
|
"hdf5-0.8.1" = "sha256-qWF2mURVblSLPbt4oZSVxIxI/RO3ZNcZdwCdaOTACYs=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# only the ladspa plugin part has been packaged so far...
|
||||||
|
|
||||||
|
buildAndTestSubdir = "ladspa";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir $out/lib/ladspa
|
||||||
|
mv $out/lib/libdeep_filter_ladspa${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/ladspa/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Noise supression using deep filtering";
|
||||||
|
homepage = "https://github.com/Rikorose/DeepFilterNet";
|
||||||
|
license = with lib.licenses; [ mit asl20 ];
|
||||||
|
maintainers = with lib.maintainers; [ ralismark ];
|
||||||
|
changelog = "https://github.com/Rikorose/DeepFilterNet/releases/tag/${src.rev}";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue