mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
21 lines
545 B
Nix
21 lines
545 B
Nix
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libexosip2";
|
|
version = "4.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
|
|
sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libosip openssl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
license = licenses.gpl2Plus;
|
|
description = "Library that hides the complexity of using the SIP protocol";
|
|
platforms =platforms.linux;
|
|
};
|
|
}
|