Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 641bd6e0ca00
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e071756043ba
Choose a head ref
  • 5 commits
  • 5 files changed
  • 1 contributor

Commits on Jul 1, 2017

  1. mcabber: 1.0.5 -> 1.1.0

    pSub committed Jul 1, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    pSub Pascal Wittmann
    Copy the full SHA
    2e78ca2 View commit details
  2. nzbget: 18.1 -> 19.0

    pSub committed Jul 1, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    pSub Pascal Wittmann
    Copy the full SHA
    fa92dd8 View commit details
  3. yodl: 3.08.02 -> 4.01.00

    pSub committed Jul 1, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    pSub Pascal Wittmann
    Copy the full SHA
    cdf0c53 View commit details
  4. radicale: 1.1.2 -> 1.1.4

    pSub committed Jul 1, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    pSub Pascal Wittmann
    Copy the full SHA
    1420b20 View commit details
  5. spin: 6.4.5 -> 6.4.6

    pSub committed Jul 1, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    pSub Pascal Wittmann
    Copy the full SHA
    e071756 View commit details
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@

stdenv.mkDerivation rec {
name = "mcabber-${version}";
version = "1.0.5";
version = "1.1.0";

src = fetchurl {
url = "http://mcabber.com/files/mcabber-${version}.tar.bz2";
sha256 = "0ixdzk5b3s31a4bdfqgqrsiq7vbgdzhqr49p9pz9cq9bgn0h1wm0";
sha256 = "1ggh865p1rf10ffsnf4g6qv9i8bls36dxdb1nzs5r9vdqci2rz04";
};

buildInputs = [ openssl ncurses pkgconfig glib loudmouth libotr gpgme ];
6 changes: 3 additions & 3 deletions pkgs/development/tools/analysis/spin/default.nix
Original file line number Diff line number Diff line change
@@ -7,15 +7,15 @@ let

in stdenv.mkDerivation rec {
name = "spin-${version}";
version = "6.4.5";
version = "6.4.6";
url-version = stdenv.lib.replaceChars ["."] [""] version;

src = fetchurl {
# The homepage is behind CloudFlare anti-DDoS protection, which blocks cURL.
# Dropbox mirror from developers:
# https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AADZPqS4aoR-pjNF6OQXRLQHa
url = "https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AAANRpxsSyWC7iHZB-XgBwJFa/spin645.tar.gz?raw=1";
sha256 = "0x8qnwm2xa8f176c52mzpvnfzglxs6xgig7bcgvrvkb3xf114224";
url = "https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AAA-vBeJ7xty-CDZgk7OB58Ta/spin646.tar.gz?raw=1";
sha256 = "1n33qzlb7g30vhr5yxssw210b2m0242y9j21c7fqpn9z6b0rbhjp";
};

nativeBuildInputs = [ makeWrapper ];
4 changes: 2 additions & 2 deletions pkgs/development/tools/misc/yodl/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

stdenv.mkDerivation rec {
name = "yodl-${version}";
version = "3.08.02";
version = "4.01.00";

nativeBuildInputs = [ icmake ];

buildInputs = [ perl ];

src = fetchFromGitHub {
sha256 = "0z4pjrl4bq03fxc50c9h0bnc90vqn5c2dy830mjyzjrn1ms3i003";
sha256 = "1aahwmj4gmf59lrij2373lkgfj77i3ghdas9c7iqrjwaizb0430p";
rev = version;
repo = "yodl";
owner = "fbb-git";
4 changes: 2 additions & 2 deletions pkgs/servers/radicale/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

pythonPackages.buildPythonApplication rec {
name = "radicale-${version}";
version = "1.1.2";
version = "1.1.4";

src = fetchurl {
url = "mirror://pypi/R/Radicale/Radicale-${version}.tar.gz";
sha256 = "1g20p3998f46ywda7swv0py63wjbrhvk0nrafajlbb6wgzxjmqpb";
sha256 = "17p0hayyw30pfb81xqvd7jhjm6yrk2dnbgvqagx1nqdsr89ar0ss";
};

propagatedBuildInputs = stdenv.lib.optionals (!pythonPackages.isPy3k) [
4 changes: 2 additions & 2 deletions pkgs/tools/networking/nzbget/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@

stdenv.mkDerivation rec {
name = "nzbget-${version}";
version = "18.1";
version = "19.0";

src = fetchurl {
url = "http://github.com/nzbget/nzbget/releases/download/v${version}/nzbget-${version}-src.tar.gz";
sha256 = "069q75b0s9fzzy15m96dhn83jypgc91yx998rl0nykfcl7nzkxyx";
sha256 = "08kgi4zmh4h1pvxh8x4c3ydf9xl2s6ncm579f0wdm2zknvpf0j16";
};

nativeBuildInputs = [ pkgconfig ];