nixpkgs/pkgs/by-name/ms/msilbc/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

26 lines
721 B
Nix

{ lib, stdenv, fetchurl, ilbc, mediastreamer, pkg-config }:
stdenv.mkDerivation rec {
pname = "msilbc";
version = "2.1.2";
src = fetchurl {
url = "mirror://savannah/linphone/plugins/sources/${pname}-${version}.tar.gz";
sha256 = "07j02y994ybh274fp7ydjvi76h34y2c34ndwjpjfcwwr03b48cfp";
};
propagatedBuildInputs = [ ilbc mediastreamer ];
nativeBuildInputs = [ pkg-config ];
configureFlags = [
"ILBC_LIBS=ilbc" "ILBC_CFLAGS=-I${ilbc}/include"
"MEDIASTREAMER_LIBS=mediastreamer" "MEDIASTREAMER_CFLAGS=-I${mediastreamer}/include"
];
meta = with lib; {
description = "Mediastreamer plugin for the iLBC audio codec";
platforms = platforms.linux;
license = licenses.gpl2;
};
}