tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
isync: 1.2.1 -> 1.3.0
Anthony Cowley
8 years ago
edcdb957
5a21efdc
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
isync
default.nix
+4
-4
pkgs/tools/networking/isync/default.nix
···
1
-
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
2
3
stdenv.mkDerivation rec {
4
-
name = "isync-1.2.1";
5
6
src = fetchurl {
7
url = "mirror://sourceforge/isync/${name}.tar.gz";
8
-
sha256 = "1bij6nm06ghkg98n2pdyacam2fyg5y8f7ajw0d5653m0r4ldw5p7";
9
};
10
11
-
nativeBuildInputs = [ pkgconfig ];
12
buildInputs = [ openssl db cyrus_sasl ];
13
14
meta = with stdenv.lib; {
···
1
+
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl, perl }:
2
3
stdenv.mkDerivation rec {
4
+
name = "isync-1.3.0";
5
6
src = fetchurl {
7
url = "mirror://sourceforge/isync/${name}.tar.gz";
8
+
sha256 = "173wd7x8y5sp94slzwlnb7zhgs32r57zl9xspl2rf4g3fqwmhpwd";
9
};
10
11
+
nativeBuildInputs = [ pkgconfig perl ];
12
buildInputs = [ openssl db cyrus_sasl ];
13
14
meta = with stdenv.lib; {