Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
linphone # Linphone
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
linphone # Linphone
];
} Package Definition
{
"pname": "linphone",
"version": "5.3.2",
"src": {
"url": "https://download.linphone.org/releases/macosx/app/Linphone-5.3.2-mac.dmg",
"sha256": "41d31e3a7942247ae072cbc55bf147164cd1189457021eaca3eab41a49c1cd7e"
},
"installPhase": [
"mkdir -p \"$out/Applications/Linphone.app\" && cp -r \"Linphone.app\" \"$out/Applications\""
],
"meta": {
"description": "Software for communication systems developers",
"homepage": "https://www.linphone.org/"
}
}