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: ae71c13a92f7
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: ad3172922613
Choose a head ref
  • 12 commits
  • 8 files changed
  • 9 contributors

Commits on Jun 2, 2019

  1. pulsemixer: 1.4.0 -> 1.5.0

    dywedir committed Jun 2, 2019
    Copy the full SHA
    f77faeb View commit details
  2. python37Packages.twilio: 6.26.2 -> 6.27.1

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/python3.7-twilio/versions
    r-ryantm committed Jun 2, 2019
    Copy the full SHA
    5caa175 View commit details

Commits on Jun 3, 2019

  1. rdma-core: 23.1 -> 24.0

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/rdma-core/versions
    r-ryantm committed Jun 3, 2019
    Copy the full SHA
    f6e96c3 View commit details
  2. Merge pull request #62560 from r-ryantm/auto-update/rdma-core

    rdma-core: 23.1 -> 24.0
    markuskowa authored Jun 3, 2019
    Copy the full SHA
    db3398a View commit details
  3. ultrastardx: fixup compilation

    It starts for me now, so hopefully it's just OK.
    vcunat committed Jun 3, 2019
    Copy the full SHA
    fbda7ca View commit details
  4. Copy the full SHA
    e82ddcb View commit details
  5. cppzmq: 4.2.3 -> 4.3.0

    abbradar committed Jun 3, 2019
    Copy the full SHA
    7ec20f9 View commit details
  6. nixos/systemd-boot: don't remove directories from EFI dir

    This will only result in an error. These directories might be created by, for example, fwupdmgr.
    abbradar committed Jun 3, 2019
    Copy the full SHA
    fa2e4bf View commit details
  7. Merge pull request #62504 from dywedir/pulsemixer

    pulsemixer: 1.4.0 -> 1.5.0
    Ma27 authored Jun 3, 2019
    Copy the full SHA
    51acfce View commit details
  8. Merge pull request #62586 from davidtwco/franz-5.1.0

    franz: 5.0.0-beta.19 -> 5.1.0
    Ma27 authored Jun 3, 2019
    Copy the full SHA
    739f74d View commit details
  9. python37Packages.twilio: 6.26.2 -> 6.27.1 (#62545)

    python37Packages.twilio: 6.26.2 -> 6.27.1
    flokli authored Jun 3, 2019
    Copy the full SHA
    e464899 View commit details
  10. Copy the full SHA
    ad31729 View commit details
Original file line number Diff line number Diff line change
@@ -154,7 +154,7 @@ def remove_old_entries(gens):
except ValueError:
pass
for path in glob.iglob("@efiSysMountPoint@/efi/nixos/*"):
if not path in known_paths:
if not path in known_paths and not os.path.isdir(path):
os.unlink(path)

def get_profiles():
Original file line number Diff line number Diff line change
@@ -3,12 +3,12 @@
, gnome2, dbus, nss, nspr, alsaLib, cups, expat, udev, libnotify, xdg_utils }:

let
version = "5.0.0-beta.19";
version = "5.1.0";
in stdenv.mkDerivation rec {
name = "franz-${version}";
src = fetchurl {
url = "https://github.com/meetfranz/franz/releases/download/v${version}/franz_${version}_amd64.deb";
sha256 = "1b9b8y19iqx8bnax7hbh9rkjfxk8a9gqb1akrcxwwfi46l816gyy";
sha256 = "a474d2e9c6fb99abfc4c7e9290a0e52eef62233fa25c962afdde75fe151277d0";
};

# don't remove runtime deps
4 changes: 2 additions & 2 deletions pkgs/development/compilers/ocaml/4.08.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ./generic.nix {
major_version = "4";
minor_version = "08";
patch_version = "0+beta3";
sha256 = "02pk4bxrgqb12hvpbxyqnl4nwr4g2h96wsfzfd1k8vj8h0jmxzc4";
patch_version = "0+rc1";
sha256 = "014yincnkfg0j2jy0cn30l5hb1y4sf2qf1gy9ix9ghgn32iw5ndk";

# If the executable is stripped it does not work
dontStrip = true;
10 changes: 8 additions & 2 deletions pkgs/development/libraries/cppzmq/default.nix
Original file line number Diff line number Diff line change
@@ -2,18 +2,24 @@

stdenv.mkDerivation rec {
name = "cppzmq-${version}";
version = "4.2.3";
version = "4.3.0";

src = fetchFromGitHub {
owner = "zeromq";
repo = "cppzmq";
rev = "v${version}";
sha256 = "1yjs25ra5s8zs0rhk50w3f1rrrl80hhq784lwdhh1m3risk740sa";
sha256 = "1g45cdny1m08zw4l261bqcqfdb825mnwjwqcf35bkyc03fr4213l";
};

nativeBuildInputs = [ cmake ];
buildInputs = [ zeromq ];

cmakeFlags = [
# Tests try to download googletest at compile time; there is no option
# to use a system one and no simple way to download it beforehand.
"-DCPPZMQ_BUILD_TESTS=OFF"
];

meta = with stdenv.lib; {
homepage = https://github.com/zeromq/cppzmq;
license = licenses.bsd2;
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/twilio/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

buildPythonPackage rec {
pname = "twilio";
version = "6.26.2";
version = "6.27.1";
# tests not included in PyPi, so fetch from github instead
src = fetchFromGitHub {
owner = "twilio";
repo = "twilio-python";
rev = version;
sha256 = "0z0ahbckh5calwgkmd493znixclhjjrly8jfymhwlw6g0g79kavw";
sha256 = "1yd4cpl4y01d3a956gsdg13vx02rb176wyh7mzr0aznkp38nyw5w";
};

buildInputs = [ nose mock ];
3 changes: 2 additions & 1 deletion pkgs/games/ultrastardx/default.nix
Original file line number Diff line number Diff line change
@@ -23,9 +23,10 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ fpc libpng ] ++ sharedLibs;

# https://github.com/UltraStar-Deluxe/USDX/issues/462
postPatch = ''
# autoconf substitutes strange things otherwise
substituteInPlace src/config.inc.in \
--subst-var-by lua_LIB_NAME liblua.so \
--subst-var-by libpcre_LIBNAME libpcre.so.1
'';

4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/rdma-core/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
} :

let
version = "23.1";
version = "24.0";

in stdenv.mkDerivation {
name = "rdma-core-${version}";
@@ -12,7 +12,7 @@ in stdenv.mkDerivation {
owner = "linux-rdma";
repo = "rdma-core";
rev = "v${version}";
sha256 = "0blwqfj73bnk7byj2mavvnyh87mwhpzwgzg60s9vv9jnfcnbhlhk";
sha256 = "038msip4fnd8fh6m0vhnqwsaarp86dbnc9hvf5n19aqhlqbabbdc";
};

nativeBuildInputs = [ cmake pkgconfig pandoc ];
5 changes: 2 additions & 3 deletions pkgs/tools/audio/pulsemixer/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{ stdenv, fetchFromGitHub, python3, libpulseaudio }:

stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "pulsemixer";
version = "1.4.0";
version = "1.5.0";

src = fetchFromGitHub {
owner = "GeorgeFilipkin";
repo = pname;
rev = version;
sha256 = "0l5zawv36d46sj3k31k5w6imnnxzyn62r83wdhr7fp5mi3ls1h5x";
sha256 = "162nfpyqn4gp45x332a73n07c118vispz3jicin4p67x3f8f0g3j";
};

inherit libpulseaudio;