nixpkgs/pkgs/development/libraries/osip/default.nix

19 lines
591 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2016-09-26 13:46:53 +00:00
version = "5.0.0";
src = fetchurl {
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
2016-09-26 13:46:53 +00:00
sha256 = "00yznbrm9q04wgd4b831km8iwlvwvsnwv87igf79g5vj9yakr88q";
};
name = "libosip2-${version}";
meta = {
license = stdenv.lib.licenses.lgpl21Plus;
homepage = http://www.gnu.org/software/osip/;
description = "The GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
maintainers = with stdenv.lib.maintainers; [ raskin ];
platforms = stdenv.lib.platforms.linux;
2014-09-02 09:25:05 +00:00
inherit version;
};
}