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: 7755d37eca52
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: bed7e5aaf2de
Choose a head ref
  • 15 commits
  • 11 files changed
  • 10 contributors

Commits on May 18, 2019

  1. Copy the full SHA
    75a60db View commit details

Commits on May 21, 2019

  1. imagemagick7: 7.0.8-34 -> 7.0.8-46

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/imagemagick/versions
    r-ryantm committed May 21, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ed2c6a0 View commit details

Commits on May 23, 2019

  1. rtl_433: enable soapysdr backend support

    soapy support was added in 18.12
    markuskowa committed May 23, 2019
    Copy the full SHA
    6180fcb View commit details

Commits on May 24, 2019

  1. Copy the full SHA
    cadd889 View commit details
  2. stunnel: 5.53 -> 5.54

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/stunnel/versions
    r-ryantm committed May 24, 2019
    Copy the full SHA
    03c0739 View commit details
  3. Merge pull request #61975 from markuskowa/fix-rtl433

    rtl_433: enable soapysdr backend support
    etu authored May 24, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8bbdde7 View commit details
  4. Merge pull request #62000 from r-ryantm/auto-update/stunnel

    stunnel: 5.53 -> 5.54
    etu authored May 24, 2019
    Copy the full SHA
    f0adad2 View commit details
  5. Merge pull request #61686 from georgewhewell/broadcom-sta

    broadcom_sta: fix build on linux-5.1
    infinisil authored May 24, 2019
    Copy the full SHA
    3556df6 View commit details
  6. imagemagick: Remove obsolete patch

    According to https://www.imagemagick.org/discourse-server/viewtopic.php?f=4&t=29588
    this has been mitigated in versions 6.9.4-7 and 7.0.1-9, which we're well
    past already.
    infinisil committed May 24, 2019
    Copy the full SHA
    4c1bf57 View commit details
  7. Merge pull request #61895 from smaret/gildas-update

    gildas: 20190401_a -> 20190501_a
    veprbl authored May 24, 2019
    Copy the full SHA
    785204f View commit details
  8. nixos/prosody: add authentication option (fixes #53134)

    Passwords should not be stored in plain text by default. On existing
    installations the next time a users user accounts will automatically
    be upgraded from plain to hashed one-by-one as they log in.
    Milan Pässler committed May 24, 2019
    Copy the full SHA
    387d85b View commit details
  9. nixos/prosody: add authentication option (fixes #53134) (#61051)

    nixos/prosody: add authentication option (fixes #53134)
    infinisil authored May 24, 2019
    Copy the full SHA
    953c81d View commit details
  10. imagemagick7: 7.0.8-34 -> 7.0.8-46 (#61836)

    imagemagick7: 7.0.8-34 -> 7.0.8-46
    infinisil authored May 24, 2019
    Copy the full SHA
    e4fe0dc View commit details

Commits on May 25, 2019

  1. Copy the full SHA
    52a118f View commit details
  2. Copy the full SHA
    bed7e5a View commit details
8 changes: 8 additions & 0 deletions nixos/modules/services/networking/prosody.nix
Original file line number Diff line number Diff line change
@@ -422,6 +422,13 @@ in
description = "List of administrators of the current host";
};

authentication = mkOption {
type = types.enum [ "internal_plain" "internal_hashed" "cyrus" "anonymous" ];
default = "internal_hashed";
example = "internal_plain";
description = "Authentication mechanism used for logins.";
};

extraConfig = mkOption {
type = types.lines;
default = "";
@@ -477,6 +484,7 @@ in
s2s_secure_domains = ${toLua cfg.s2sSecureDomains}
authentication = ${toLua cfg.authentication}
${ cfg.extraConfig }
6 changes: 3 additions & 3 deletions pkgs/applications/graphics/ImageMagick/7.0.nix
Original file line number Diff line number Diff line change
@@ -13,8 +13,8 @@ let
else throw "ImageMagick is not supported on this platform.";

cfg = {
version = "7.0.8-34";
sha256 = "0szkzwy0jzmwx4kqli21jq8pk3s53v37q0nsaqzascs3mpkbza2s";
version = "7.0.8-46";
sha256 = "1si3rv3b9jgjkwyny5ja76s8c0z9vyic28fm63j1jrqdd2jyq3pk";
patches = [];
};
in
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
inherit (cfg) sha256;
};

patches = [ ./imagetragick.patch ] ++ cfg.patches;
patches = cfg.patches;

outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
outputMan = "out"; # it's tiny
2 changes: 1 addition & 1 deletion pkgs/applications/graphics/ImageMagick/default.nix
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
inherit (cfg) sha256;
};

patches = [ ./imagetragick.patch ] ++ cfg.patches;
patches = cfg.patches;

outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
outputMan = "out"; # it's tiny
8 changes: 0 additions & 8 deletions pkgs/applications/graphics/ImageMagick/imagetragick.patch

This file was deleted.

7 changes: 5 additions & 2 deletions pkgs/applications/radio/rtl_433/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1, rtl-sdr }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, libusb1, rtl-sdr, soapysdr-with-plugins
}:

stdenv.mkDerivation rec {

version = "18.12";
@@ -13,7 +16,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ autoreconfHook pkgconfig ];

buildInputs = [ libusb1 rtl-sdr ];
buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];

meta = with stdenv.lib; {
description = "Decode traffic from devices that broadcast on 433.9 MHz";
6 changes: 3 additions & 3 deletions pkgs/applications/science/astronomy/gildas/default.nix
Original file line number Diff line number Diff line change
@@ -7,16 +7,16 @@ let
in

stdenv.mkDerivation rec {
srcVersion = "apr19a";
version = "20190401_a";
srcVersion = "may19a";
version = "20190501_a";
name = "gildas-${version}";

src = fetchurl {
# For each new release, the upstream developers of Gildas move the
# source code of the previous release to a different directory
urls = [ "http://www.iram.fr/~gildas/dist/gildas-src-${srcVersion}.tar.xz"
"http://www.iram.fr/~gildas/dist/archive/gildas/gildas-src-${srcVersion}.tar.xz" ];
sha256 = "0yb8dv41qsr5w2yci62phk6mrxbjlfxl4nnj7zndlyym2i5ni89c";
sha256 = "f6132116bce0ea716a6eb13a63f538d27567a8bfb159f7d567abb9dac5429e30";
};

enableParallelBuilding = true;
8 changes: 4 additions & 4 deletions pkgs/development/tools/gotools/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule rec {
name = "gotools-unstable-${version}";
version = "2019-03-05";
rev = "00c44ba9c14f88ffdd4fb5bfae57fe8dd6d6afb1";
version = "2019-05-24";
rev = "2c0ae70061356820330c96810d9483beb9a6da8e";

src = fetchgit {
inherit rev;
url = "https://go.googlesource.com/tools";
sha256 = "04rpdi52j26szx5kiyfmwad1sg7lfplxrkbwkr3b1kfafh1whgw5";
sha256 = "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk";
};

modSha256 = "00yjcs26cm5civ96sikbd3wjmhx153xbyd805s3shca1mg99y7mm";
modSha256 = "0cm7fwb1k5hvbhh86kagzsw5vwgkr6dr7glhbjxg5xaahlhx2w5w";

postConfigure = ''
# Make the builtin tools available here
1 change: 1 addition & 0 deletions pkgs/os-specific/linux/broadcom-sta/default.nix
Original file line number Diff line number Diff line change
@@ -34,6 +34,7 @@ stdenv.mkDerivation {
# source: https://aur.archlinux.org/cgit/aur.git/tree/linux412.patch?h=broadcom-wl
./linux-4.12.patch
./linux-4.15.patch
./linux-5.1.patch
./null-pointer-fix.patch
./gcc.patch
];
32 changes: 32 additions & 0 deletions pkgs/os-specific/linux/broadcom-sta/linux-5.1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
commit bcb06af629a36eb84f9a35ac599ec7e51e2d39fb
Author: georgewhewell <georgerw@gmail.com>
Date: Sat May 18 21:22:37 2019 +0100

find src -type f -name \'*.c\' -exec sed -i "s/get_ds()/KERNEL_DS/g" {} \;

diff --git a/src/wl/sys/wl_cfg80211_hybrid.c b/src/wl/sys/wl_cfg80211_hybrid.c
index 7b606e0..51c81bc 100644
--- a/src/wl/sys/wl_cfg80211_hybrid.c
+++ b/src/wl/sys/wl_cfg80211_hybrid.c
@@ -450,7 +450,7 @@ wl_dev_ioctl(struct net_device *dev, u32 cmd, void *arg, u32 len)
ifr.ifr_data = (caddr_t)&ioc;

fs = get_fs();
- set_fs(get_ds());
+ set_fs(KERNEL_DS);
#if defined(WL_USE_NETDEV_OPS)
err = dev->netdev_ops->ndo_do_ioctl(dev, &ifr, SIOCDEVPRIVATE);
#else
diff --git a/src/wl/sys/wl_iw.c b/src/wl/sys/wl_iw.c
index c4c610b..9c3c74e 100644
--- a/src/wl/sys/wl_iw.c
+++ b/src/wl/sys/wl_iw.c
@@ -117,7 +117,7 @@ dev_wlc_ioctl(
ifr.ifr_data = (caddr_t) &ioc;

fs = get_fs();
- set_fs(get_ds());
+ set_fs(KERNEL_DS);
#if defined(WL_USE_NETDEV_OPS)
ret = dev->netdev_ops->ndo_do_ioctl(dev, &ifr, SIOCDEVPRIVATE);
#else
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/kernel/linux-libre.nix
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@

# Update this if linux_latest-libre fails to build.
# $ curl https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags/ | grep -Eo 'Revision [0-9]+'
rev = "16063";
sha256 = "0y4icpkysnf15bpkj71g8samhj516913mx6ng5fb2hdxc4009bx2";
rev = "16330";
sha256 = "1d7rsq2m6lp1784cgdg95aspgrnzxm6q9dxqalxja5cac8n6p11y";
}
, ...
}:
4 changes: 2 additions & 2 deletions pkgs/tools/networking/stunnel/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "stunnel-${version}";
version = "5.53";
version = "5.54";

src = fetchurl {
url = "https://www.stunnel.org/downloads/${name}.tar.gz";
sha256 = "119560alb8k0qz2zkjb2i80ikmn76fa6dg681fvrw9hlxsb9hhw0";
sha256 = "00krr0h3vsyi93mqhrbgfgn8v47l4l3hzdg1ccfnpd3lqak8i1ay";
# please use the contents of "https://www.stunnel.org/downloads/${name}.tar.gz.sha256",
# not the output of `nix-prefetch-url`
};