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

Commits on Nov 30, 2016

  1. syncthing: 0.14.12 -> 0.14.13

    jokogr committed Nov 30, 2016

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    58faa13 View commit details
  2. Merge pull request #20812 from jokogr/u/syncthing-0.14.13

    syncthing: 0.14.12 -> 0.14.13
    FRidh authored Nov 30, 2016

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    d6ffb97 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/networking/syncthing/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/networking/syncthing/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, lib, fetchFromGitHub, go, pkgs }:

stdenv.mkDerivation rec {
version = "0.14.12";
version = "0.14.13";
name = "syncthing-${version}";

src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
sha256 = "09w0i9rmdi9fjsphib2x6gs6yn5d1a41nh1pm4k9ks31am9zdwsm";
sha256 = "0gq218f1rhzjrqh2gjyvqksa7a1agwhm8rfqf5jw58pncblrn6v4";
};

buildInputs = [ go ];