fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6stdenv.mkDerivation (finalAttrs: {
7 version = "5.3.1";
8 src = fetchurl {
9 url = "mirror://gnu/osip/libosip2-${finalAttrs.version}.tar.gz";
10 sha256 = "sha256-/oL+hBYIJmrBWlwRGCFtoAxVTVAG4odaisN1Kx5q3Hk=";
11 };
12 pname = "libosip2";
13
14 meta = {
15 license = lib.licenses.lgpl21Plus;
16 homepage = "https://www.gnu.org/software/osip/";
17 description = "GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
18 maintainers = with lib.maintainers; [ raskin ];
19 platforms = lib.platforms.all;
20 };
21})