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.
19 lines
665 B
Nix
19 lines
665 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opencore-amr";
|
|
version = "0.1.6";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/opencore-amr/opencore-amr/opencore-amr-${version}.tar.gz";
|
|
hash = "sha256-SD60BhCI4rNLNY5HVAtdSVqWzUaONhBQ+uYVsYCdxKE=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://opencore-amr.sourceforge.io/";
|
|
description = "Library of OpenCORE Framework implementation of Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.
|
|
Library of VisualOn implementation of Adaptive Multi Rate Wideband (AMR-WB)";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.kiloreux ];
|
|
};
|
|
}
|