mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
17 lines
540 B
Nix
17 lines
540 B
Nix
{lib, stdenv, fetchurl}:
|
|
stdenv.mkDerivation rec {
|
|
version = "5.3.1";
|
|
src = fetchurl {
|
|
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
|
|
sha256 = "sha256-/oL+hBYIJmrBWlwRGCFtoAxVTVAG4odaisN1Kx5q3Hk=";
|
|
};
|
|
pname = "libosip2";
|
|
|
|
meta = {
|
|
license = lib.licenses.lgpl21Plus;
|
|
homepage = "https://www.gnu.org/software/osip/";
|
|
description = "GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|