tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
exosip: 4.0.0 -> 4.1.0
ndowens
9 years ago
e86bb4da
45cfd396
+10
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
exosip
default.nix
+10
-8
pkgs/development/libraries/exosip/default.nix
···
1
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
2
3
stdenv.mkDerivation rec {
4
-
version = "4.0.0";
5
-
src = fetchurl {
0
0
6
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
7
-
sha256 = "1rdjr3x7s992w004cqf4xji1522an9rpzsr9wvyhp685khmahrsj";
8
};
9
-
name = "libexosip2-${version}";
10
-
11
buildInputs = [ libosip openssl pkgconfig ];
12
13
-
meta = {
14
-
license = stdenv.lib.licenses.gpl2Plus;
15
description = "Library that hides the complexity of using the SIP protocol";
16
-
platforms = stdenv.lib.platforms.linux;
17
};
18
}
···
1
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
2
3
stdenv.mkDerivation rec {
4
+
name = "libexosip2-${version}";
5
+
version = "4.1.0";
6
+
7
+
src = fetchurl {
8
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
9
+
sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
10
};
11
+
12
+
nativeBuildInputs = [ pkgconfig ];
13
buildInputs = [ libosip openssl pkgconfig ];
14
15
+
meta = with stdenv.lib; {
16
+
license = licenses.gpl2Plus;
17
description = "Library that hides the complexity of using the SIP protocol";
18
+
platforms =platforms.linux;
19
};
20
}