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

Commits on Oct 18, 2017

  1. isync: 1.2.1 -> 1.3.0

    acowley committed Oct 18, 2017
    Copy the full SHA
    edcdb95 View commit details
  2. Merge pull request #30527 from acowley/isync-1.3.0

    isync: 1.2.1 -> 1.3.0
    grahamc authored Oct 18, 2017
    Copy the full SHA
    df77869 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/networking/isync/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/networking/isync/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl, perl }:

stdenv.mkDerivation rec {
name = "isync-1.2.1";
name = "isync-1.3.0";

src = fetchurl {
url = "mirror://sourceforge/isync/${name}.tar.gz";
sha256 = "1bij6nm06ghkg98n2pdyacam2fyg5y8f7ajw0d5653m0r4ldw5p7";
sha256 = "173wd7x8y5sp94slzwlnb7zhgs32r57zl9xspl2rf4g3fqwmhpwd";
};

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ openssl db cyrus_sasl ];

meta = with stdenv.lib; {