tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
chrony: 3.0 -> 3.1
Franz Pletz
8 years ago
ed71a3a6
735dcc1a
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
chrony
default.nix
+3
-3
pkgs/tools/networking/chrony/default.nix
···
6
6
stdenv.mkDerivation rec {
7
7
name = "chrony-${version}";
8
8
9
9
-
version = "3.0";
9
9
+
version = "3.1";
10
10
11
11
src = fetchurl {
12
12
url = "http://download.tuxfamily.org/chrony/${name}.tar.gz";
13
13
-
sha256 = "0vfdsajz2w6b7c94rxrj7fsr234jryhl2rbdlmb7h10gla8pnf50";
13
13
+
sha256 = "0xb03dya1zhcn1gch2v2ynifxw95g8m3plr9q4ys0s3pvgf0g4cx";
14
14
};
15
15
16
16
buildInputs = [ readline texinfo nss nspr ]
···
24
24
25
25
meta = with stdenv.lib; {
26
26
description = "Sets your computer's clock from time servers on the Net";
27
27
-
homepage = http://chrony.tuxfamily.org/;
27
27
+
homepage = https://chrony.tuxfamily.org/;
28
28
repositories.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git;
29
29
license = licenses.gpl2;
30
30
platforms = with platforms; linux ++ freebsd ++ openbsd;