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: 044a807a45ec
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: a1299c9951b8
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jul 30, 2018

  1. sbt: 1.1.6 -> 1.2.0

    (cherry picked from commit 07264c5c002303cfd1bd79d2e629fd7b850a1a28)
    NeQuissimus committed Jul 30, 2018
    Copy the full SHA
    b74b1cd View commit details

Commits on Jul 31, 2018

  1. rdkafka: 0.11.3 -> 0.11.4

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/rdkafka/versions.
    
    These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 0.11.4 with grep in /nix/store/p7dbh8kabl3bqr28icnkzp55s6636mpl-rdkafka-0.11.4
    - directory tree listing: https://gist.github.com/ab8b067a5f31e07af4ed6b1dbdc1a8a4
    
    (cherry picked from commit 9f447ca)
    
    rdkafka: 0.11.4 -> 0.11.5 (#43932)
    
    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rdkafka/versions.
    
    (cherry picked from commit a55bbee)
    R. RyanTM authored and shlevy committed Jul 31, 2018
    Copy the full SHA
    a1299c9 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/libraries/rdkafka/default.nix
  2. +2 −2 pkgs/development/tools/build-managers/sbt/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/rdkafka/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
name = "rdkafka-${version}";
version = "0.11.3";
version = "0.11.5";

src = fetchFromGitHub {
owner = "edenhill";
repo = "librdkafka";
rev = "v${version}";
sha256 = "17ghq0kzk2fdpxhr40xgg3s0p0n0gkvd0d85c6jsww3mj8v5xd14";
sha256 = "1b0zp7k0775g5pzvkmpmsha63wx8wcwcas6w6wb09y0gymxz0xss";
};

nativeBuildInputs = [ pkgconfig ];
4 changes: 2 additions & 2 deletions pkgs/development/tools/build-managers/sbt/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

stdenv.mkDerivation rec {
name = "sbt-${version}";
version = "1.1.6";
version = "1.2.0";

src = fetchurl {
urls = [
"https://dl.bintray.com/sbt/native-packages/sbt/${version}/${name}.tgz"
"https://github.com/sbt/sbt/releases/download/v${version}/sbt-${version}.tgz"
"https://cocl.us/sbt-${version}.tgz"
];
sha256 = "1hb8gcf3shcp4a65pnlqdlp8j5as7prqvw3d0b5bnfjfi0qbaigm";
sha256 = "1rrn0v4bhgar3mrgs931ifggb8kfg23fv5cgvskrdd7iyvg0z9wc";
};

patchPhase = ''