nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 21 lines 789 B view raw
1{ lib, stdenv, fetchurl, pkg-config, telepathy-glib, farstream, dbus-glib }: 2 3stdenv.mkDerivation rec { 4 pname = "telepathy-farstream"; 5 version = "0.6.2"; 6 7 src = fetchurl { 8 url = "https://telepathy.freedesktop.org/releases/${pname}/${pname}-${version}.tar.gz"; 9 sha256 = "02ky12bb92prr5f6xmvmfq4yz2lj33li6nj4829a98hk5pr9k83g"; 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 propagatedBuildInputs = [ dbus-glib telepathy-glib farstream ]; 14 15 meta = with lib; { 16 description = "GObject-based C library that uses Telepathy GLib, Farstream and GStreamer to handle the media streaming part of channels of type Call"; 17 homepage = "https://telepathy.freedesktop.org/wiki/Components/Telepathy-Farstream/"; 18 platforms = platforms.unix; 19 license = licenses.lgpl21Only; 20 }; 21}