nixpkgs/pkgs/development/libraries/osip/default.nix
Lluís Batlle i Rossell 3c282f5a31 Adding linphone
svn path=/nixpkgs/trunk/; revision=25545
2011-01-13 20:49:58 +00:00

21 lines
470 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "3.5.0";
src = fetchurl {
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
sha256 = "14csf6z7b802bahxd560ibx3mg2fq3ki734vf3k2vknr4jm5v5fx";
};
name = "libosip2-${version}";
meta = {
license = "LGPLv2.1+";
description = "GNU oSIP library ";
maintainers = with stdenv.lib.maintainers;
[
raskin
];
platforms = with stdenv.lib.platforms;
linux;
};
}