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: 606228974f48
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e14bea96a560
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 14, 2018

  1. chunksync: 0.3 -> 0.4

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    - ran `/nix/store/bgpzi08y1w7zgv0iaisdd974mdy6pdpl-chunksync-0.4/bin/chunksync -h` got 0 exit code
    - ran `/nix/store/bgpzi08y1w7zgv0iaisdd974mdy6pdpl-chunksync-0.4/bin/chunksync -V` and found version 0.4
    - ran `/nix/store/bgpzi08y1w7zgv0iaisdd974mdy6pdpl-chunksync-0.4/bin/chunksync -h` and found version 0.4
    - found 0.4 with grep in /nix/store/bgpzi08y1w7zgv0iaisdd974mdy6pdpl-chunksync-0.4
    - found 0.4 in filename of file in /nix/store/bgpzi08y1w7zgv0iaisdd974mdy6pdpl-chunksync-0.4
    ryantm committed Mar 14, 2018
    Copy the full SHA
    a73c91c View commit details
  2. Merge pull request #36968 from ryantm/auto-update/chunksync

    chunksync: 0.3 -> 0.4
    Mic92 authored Mar 14, 2018
    Copy the full SHA
    e14bea9 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/backup/chunksync/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/backup/chunksync/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, openssl, perl }:

stdenv.mkDerivation rec {
version = "0.3";
version = "0.4";
name = "chunksync-${version}";

src = fetchurl {
url = "http://chunksync.florz.de/chunksync_${version}.tar.gz";
sha256 = "e0c27f925c5cf811798466312a56772864b633728c433fb2fcce23c8712b52fc";
sha256 = "1gwqp1kjwhcmwhynilakhzpzgc0c6kk8c9vkpi30gwwrwpz3cf00";
};

buildInputs = [openssl perl];