about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/exosip
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/exosip')
-rw-r--r--nixpkgs/pkgs/development/libraries/exosip/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/exosip/default.nix b/nixpkgs/pkgs/development/libraries/exosip/default.nix
new file mode 100644
index 000000000000..10d390bd678d
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/exosip/default.nix
@@ -0,0 +1,20 @@
+{ lib, stdenv, fetchurl, libosip, openssl, pkg-config }:
+
+stdenv.mkDerivation rec {
+ pname = "libexosip2";
+ version = "5.3.0";
+
+ src = fetchurl {
+    url = "mirror://savannah/exosip/${pname}-${version}.tar.gz";
+    sha256 = "sha256-W3gjmGQx6lztyfCV1pZKzpZvCTsq59CwhAR4i/zrycI=";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ libosip openssl ];
+
+  meta = with lib; {
+    license = licenses.gpl2Plus;
+    description = "Library that hides the complexity of using the SIP protocol";
+    platforms = platforms.linux;
+  };
+}