nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.magika: correct meta.mainProgram (#408789)

authored by

Yohann Boniface and committed by
GitHub
bbfc3425 05496249

+2 -1
+2 -1
pkgs/development/python-modules/magika/default.nix
··· 44 44 meta = with lib; { 45 45 description = "Magika: Detect file content types with deep learning"; 46 46 homepage = "https://github.com/google/magika"; 47 + changelog = "https://github.com/google/magika/blob/python-v${version}/python/CHANGELOG.md"; 47 48 license = licenses.asl20; 48 49 maintainers = with maintainers; [ mihaimaruseac ]; 49 - mainProgram = "magika"; 50 + mainProgram = "magika-python-client"; 50 51 # Currently, disabling on AArch64 as it onnx runtime crashes on ofborg 51 52 broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux; 52 53 };