Skip to content

Commit fe58058

Browse files
authored
freefilesync: 13.7 -> 13.8 (#354976)
2 parents ce346ad + d5448e2 commit fe58058

File tree

1 file changed

+33
-21
lines changed

1 file changed

+33
-21
lines changed

pkgs/by-name/fr/freefilesync/package.nix

Lines changed: 33 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
{ lib
2-
, stdenv
3-
, fetchurl
4-
, fetchpatch
5-
, fetchDebianPatch
6-
, copyDesktopItems
7-
, pkg-config
8-
, wrapGAppsHook3
9-
, unzip
10-
, curl
11-
, glib
12-
, gtk3
13-
, libssh2
14-
, openssl
15-
, wxGTK32
16-
, makeDesktopItem
1+
{
2+
lib,
3+
stdenv,
4+
fetchurl,
5+
fetchpatch,
6+
fetchDebianPatch,
7+
copyDesktopItems,
8+
pkg-config,
9+
wrapGAppsHook3,
10+
unzip,
11+
curl,
12+
glib,
13+
gtk3,
14+
libssh2,
15+
openssl,
16+
wxGTK32,
17+
makeDesktopItem,
1718
}:
1819

1920
stdenv.mkDerivation (finalAttrs: {
2021
pname = "freefilesync";
21-
version = "13.7";
22+
version = "13.8";
2223

2324
src = fetchurl {
2425
url = "https://freefilesync.org/download/FreeFileSync_${finalAttrs.version}_Source.zip";
@@ -27,7 +28,7 @@ stdenv.mkDerivation (finalAttrs: {
2728
rm -f $out
2829
tryDownload "$url"
2930
'';
30-
hash = "sha256-bS3J0uevtZH/yjoOtqSMYVHRaNegW6NMOZv7ctW5oRc=";
31+
hash = "sha256-nciunM5qDY8bxR09mv98CO5TU1BWmeFnByKHo7qqRc4=";
3132
};
3233

3334
sourceRoot = ".";
@@ -116,22 +117,33 @@ stdenv.mkDerivation (finalAttrs: {
116117
genericName = "Folder Comparison and Synchronization";
117118
icon = name;
118119
exec = name;
119-
categories = [ "Utility" "FileTools" ];
120+
categories = [
121+
"Utility"
122+
"FileTools"
123+
];
120124
})
121125
(makeDesktopItem rec {
122126
name = "RealTimeSync";
123127
desktopName = name;
124128
genericName = "Automated Synchronization";
125129
icon = name;
126130
exec = name;
127-
categories = [ "Utility" "FileTools" ];
131+
categories = [
132+
"Utility"
133+
"FileTools"
134+
];
128135
})
129136
];
130137

131138
meta = with lib; {
132139
description = "Open Source File Synchronization & Backup Software";
133140
homepage = "https://freefilesync.org";
134-
license = [ licenses.gpl3Only licenses.openssl licenses.curl licenses.bsd3 ];
141+
license = [
142+
licenses.gpl3Only
143+
licenses.openssl
144+
licenses.curl
145+
licenses.bsd3
146+
];
135147
maintainers = with maintainers; [ wegank ];
136148
platforms = platforms.linux;
137149
};

0 commit comments

Comments
 (0)