nixpkgs/pkgs/applications/networking/freefilesync/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

127 lines
2.8 KiB
Nix
Raw Normal View History

2022-10-07 12:04:55 +01:00
{ lib
2023-03-24 14:11:02 +00:00
, stdenv
2022-10-07 12:04:55 +01:00
, fetchFromGitHub
, fetchpatch
2023-03-24 14:11:02 +00:00
, copyDesktopItems
2022-10-07 12:04:55 +01:00
, pkg-config
2023-03-24 14:11:02 +00:00
, wrapGAppsHook
, unzip
2022-10-07 12:04:55 +01:00
, curl
, glib
, gtk3
, libssh2
, openssl
, wxGTK32
2022-12-23 01:01:16 +00:00
, gitUpdater
2023-03-24 14:11:02 +00:00
, makeDesktopItem
2022-10-07 12:04:55 +01:00
}:
2023-03-24 14:11:02 +00:00
stdenv.mkDerivation rec {
2022-10-07 12:04:55 +01:00
pname = "freefilesync";
2023-04-09 14:47:34 +01:00
version = "12.2";
2022-10-07 12:04:55 +01:00
src = fetchFromGitHub {
owner = "hkneptune";
repo = "FreeFileSync";
rev = "v${version}";
2023-04-09 14:47:34 +01:00
hash = "sha256-pCXMpK+NF06vgEgX31wyO24+kPhvPhdTeRk1j84nYd0=";
2022-10-07 12:04:55 +01:00
};
2023-03-24 14:11:02 +00:00
# Patches from Debian
2022-10-07 12:04:55 +01:00
patches = [
# Disable loading of the missing Animal.dat
(fetchpatch {
2023-03-24 14:11:02 +00:00
url = "https://sources.debian.org/data/main/f/freefilesync/12.0-2/debian/patches/ffs_devuan.patch";
2022-10-07 12:04:55 +01:00
excludes = [ "FreeFileSync/Source/ffs_paths.cpp" ];
2023-03-24 14:11:02 +00:00
hash = "sha256-6pHr5txabMTpGMKP7I5oe1lGAmgb0cPW8ZkPv/WXN74=";
2022-10-07 12:04:55 +01:00
})
# Fix build with GTK 3
(fetchpatch {
2023-03-24 14:11:02 +00:00
url = "https://sources.debian.org/data/main/f/freefilesync/12.0-2/debian/patches/ffs_devuan_gtk3.patch";
hash = "sha256-0n58Np4JI3hYK/CRBytkPHl9Jp4xK+IRjgUvoYti/f4=";
2022-10-07 12:04:55 +01:00
})
];
nativeBuildInputs = [
2023-03-24 14:11:02 +00:00
copyDesktopItems
2022-10-07 12:04:55 +01:00
pkg-config
2023-03-24 14:11:02 +00:00
wrapGAppsHook
unzip
2022-10-07 12:04:55 +01:00
];
buildInputs = [
curl
glib
gtk3
libssh2
openssl
wxGTK32
];
env.NIX_CFLAGS_COMPILE = toString [
2022-10-07 12:04:55 +01:00
# Undef g_object_ref on GLib 2.56+
"-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_54"
"-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_54"
# Define libssh2 constants
"-DMAX_SFTP_READ_SIZE=30000"
"-DMAX_SFTP_OUTGOING_SIZE=30000"
];
buildPhase = ''
runHook preBuild
chmod +w FreeFileSync/Build
cd FreeFileSync/Source
make -j$NIX_BUILD_CORES
cd RealTimeSync
make -j$NIX_BUILD_CORES
cd ../../..
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out
cp -R FreeFileSync/Build/* $out
mv $out/{Bin,bin}
2023-03-24 14:11:02 +00:00
mkdir -p $out/share/pixmaps
unzip -j $out/Resources/Icons.zip '*Sync.png' -d $out/share/pixmaps
2022-10-07 12:04:55 +01:00
runHook postInstall
'';
2023-03-24 14:11:02 +00:00
desktopItems = [
(makeDesktopItem rec {
name = "FreeFileSync";
desktopName = name;
genericName = "Folder Comparison and Synchronization";
icon = name;
exec = name;
categories = [ "Utility" "FileTools" ];
})
(makeDesktopItem rec {
name = "RealTimeSync";
desktopName = name;
genericName = "Automated Synchronization";
icon = name;
exec = name;
categories = [ "Utility" "FileTools" ];
})
];
2022-12-23 01:01:16 +00:00
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
2022-10-07 12:04:55 +01:00
meta = with lib; {
description = "Open Source File Synchronization & Backup Software";
homepage = "https://freefilesync.org";
2022-10-09 11:33:17 +01:00
license = [ licenses.gpl3Only licenses.openssl licenses.curl licenses.libssh2 ];
2022-10-07 12:04:55 +01:00
maintainers = with maintainers; [ wegank ];
platforms = platforms.linux;
};
}