Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a234b912713e
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 157d56d311aa
Choose a head ref
  • 5 commits
  • 5 files changed
  • 5 contributors

Commits on Jul 12, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    tadeokondrak Tadeo Kondrak
    Copy the full SHA
    aab4806 View commit details
  2. Merge pull request #63496 from tadeokondrak/discord-rpc/init/3.4.0

    discord-rpc: init at 3.4.0
    aanderse authored Jul 12, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cc9ec8a View commit details
  3. axel: 2.17.1 -> 2.17.3

    xrelkd authored and FRidh committed Jul 12, 2019
    Copy the full SHA
    594dfcd View commit details
  4. gajim: fix audio calling

    It appears it actually works with this fix!
    abbradar committed Jul 12, 2019
    Copy the full SHA
    f62f744 View commit details
  5. cdrtools: fix for darwin (#64460)

    Amar1729 authored and veprbl committed Jul 12, 2019
    Copy the full SHA
    157d56d View commit details
6 changes: 3 additions & 3 deletions pkgs/applications/misc/cdrtools/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, acl, libcap }:
{ stdenv, fetchurl, acl, libcap, Carbon, IOKit }:

stdenv.mkDerivation rec {
name = "cdrtools-${version}";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {

patches = [ ./fix-paths.patch ];

buildInputs = [ acl libcap ];
buildInputs = if stdenv.isDarwin then [ Carbon IOKit ] else [ acl libcap ];

postPatch = ''
sed "/\.mk3/d" -i libschily/Targets.man
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
homepage = https://sourceforge.net/projects/cdrtools/;
description = "Highly portable CD/DVD/BluRay command line recording software";
license = with licenses; [ gpl2 lgpl2 cddl ];
platforms = platforms.linux;
platforms = with platforms; linux ++ darwin;
# Licensing issues: This package contains code licensed under CDDL, GPL2
# and LGPL2. There is a debate regarding the legality of distributing this
# package in binary form.
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
, xvfb_run, dbus

# Optional dependencies
, enableJingle ? true, farstream, gstreamer, gst-plugins-base, gst-libav, gst-plugins-ugly
, enableJingle ? true, farstream, gstreamer, gst-plugins-base, gst-libav, gst-plugins-ugly, libnice
, enableE2E ? true
, enableSecrets ? true, libsecret
, enableRST ? true, docutils
@@ -33,14 +33,14 @@ python3.pkgs.buildPythonApplication rec {
'';

buildInputs = [
gobject-introspection gtk3 gnome3.adwaita-icon-theme
] ++ lib.optionals enableJingle [ farstream gstreamer gst-plugins-base gst-libav gst-plugins-ugly ]
gobject-introspection gtk3 gnome3.adwaita-icon-theme wrapGAppsHook
] ++ lib.optionals enableJingle [ farstream gstreamer gst-plugins-base gst-libav gst-plugins-ugly libnice ]
++ lib.optional enableSecrets libsecret
++ lib.optional enableSpelling gspell
++ lib.optional enableUPnP gupnp-igd;

nativeBuildInputs = [
gettext wrapGAppsHook
gettext
];

propagatedBuildInputs = with python3.pkgs; [
40 changes: 40 additions & 0 deletions pkgs/development/libraries/discord-rpc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{ stdenv
, fetchFromGitHub
, cmake
, rapidjson
, AppKit
, buildExamples ? false
}:

stdenv.mkDerivation rec {
pname = "discord-rpc";
version = "3.4.0";

src = fetchFromGitHub {
owner = "discordapp";
repo = pname;
rev = "v${version}";
sha256 = "04cxhqdv5r92lrpnhxf8702a8iackdf3sfk1050z7pijbijiql2a";
};

nativeBuildInputs = [
cmake
];

buildInputs = [
rapidjson
] ++ stdenv.lib.optional stdenv.isDarwin AppKit;

cmakeFlags = [
"-DBUILD_SHARED_LIBS=true"
"-DBUILD_EXAMPLES=${stdenv.lib.boolToString buildExamples}"
];

meta = with stdenv.lib; {
description = "Official library to interface with the Discord client";
homepage = "https://github.com/discordapp/discord-rpc";
license = licenses.mit;
maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.all;
};
}
17 changes: 10 additions & 7 deletions pkgs/tools/networking/axel/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
{ stdenv, fetchurl, autoreconfHook, pkgconfig, gettext, libssl }:
{ stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive
, pkgconfig, gettext, libssl }:

stdenv.mkDerivation rec {
name = "axel-${version}";
version = "2.17.1";
pname = "axel";
version = "2.17.3";

src = fetchurl {
url = "https://github.com/axel-download-accelerator/axel/releases/download/v${version}/${name}.tar.xz";
sha256 = "1mwyps6yvrjxp7mpzc0a2hwr2pw050c63fc9aqjzdzjjw123dfrn";
src = fetchFromGitHub {
owner = "axel-download-accelerator";
repo = pname;
rev = "v${version}";
sha256 = "0kdd2y92plv240ba2j3xrm0f8xygvm1ijghnric4whsnxvmgym7h";
};

nativeBuildInputs = [ autoreconfHook pkgconfig ];
nativeBuildInputs = [ autoreconfHook pkgconfig autoconf-archive ];

buildInputs = [ gettext libssl ];

8 changes: 7 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -10274,6 +10274,10 @@ in

directfb = callPackage ../development/libraries/directfb { };

discord-rpc = callPackage ../development/libraries/discord-rpc {
inherit (darwin.apple_sdk.frameworks) AppKit;
};

dlib = callPackage ../development/libraries/dlib { };

docopt_cpp = callPackage ../development/libraries/docopt_cpp { };
@@ -17206,7 +17210,9 @@ in
inherit (darwin.apple_sdk.frameworks) Carbon;
};

cdrtools = callPackage ../applications/misc/cdrtools { };
cdrtools = callPackage ../applications/misc/cdrtools {
inherit (darwin.apple_sdk.frameworks) Carbon IOKit;
};

centerim = callPackage ../applications/networking/instant-messengers/centerim { };