nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.09 20 lines 584 B view raw
1{ stdenv, fetchurl, glib, openssl, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name = "sofia-sip-1.12.11"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/sofia-sip/${name}.tar.gz"; 8 sha256 = "10bwsdfijpbk9ahlfpk94kzdapxiahl9mljpgwghvq1630pbq09b"; 9 }; 10 11 buildInputs = [ glib openssl ]; 12 nativeBuildInputs = [ pkgconfig ]; 13 14 meta = with stdenv.lib; { 15 description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification"; 16 homepage = "http://sofia-sip.sourceforge.net/"; 17 platforms = platforms.linux; 18 license = licenses.lgpl2; 19 }; 20}