2021-07-23 06:18:56 +01:00
|
|
|
{lib, stdenv, fetchFromGitHub, ocamlPackages, fontschumachermisc, xset, makeWrapper, ncurses, gnugrep, fetchpatch, copyDesktopItems, makeDesktopItem
|
2011-01-03 18:43:16 +00:00
|
|
|
, enableX11 ? true}:
|
2007-08-10 09:21:31 +01:00
|
|
|
|
2020-03-08 15:58:51 +00:00
|
|
|
let inherit (ocamlPackages) ocaml lablgtk; in
|
|
|
|
|
2008-06-04 15:24:28 +01:00
|
|
|
stdenv.mkDerivation (rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "unison";
|
2020-11-11 11:02:43 +00:00
|
|
|
version = "2.51.3";
|
2019-02-13 11:25:01 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bcpierce00";
|
|
|
|
repo = "unison";
|
|
|
|
rev = "v${version}";
|
2020-11-11 11:02:43 +00:00
|
|
|
sha256 = "sha256-42hmdMwOYSWGiDCmhuqtpCWtvtyD2l+kA/bhHD/Qh5Y=";
|
2007-08-10 09:21:31 +01:00
|
|
|
};
|
|
|
|
|
2021-07-23 06:18:56 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ] ++ (lib.lists.optional enableX11 copyDesktopItems);
|
2021-02-07 09:17:39 +00:00
|
|
|
buildInputs = [ ocaml ncurses ];
|
2007-08-10 09:21:31 +01:00
|
|
|
|
2021-06-18 07:36:09 +01:00
|
|
|
patches = [
|
|
|
|
# Patch to fix build with ocaml 4.12. Remove in 2.51.4
|
|
|
|
# https://github.com/bcpierce00/unison/pull/481
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-compile-with-ocaml-4.12.patch";
|
|
|
|
url = "https://github.com/bcpierce00/unison/commit/14b885316e0a4b41cb80fe3daef7950f88be5c8f.patch?full_index=1";
|
|
|
|
sha256 = "0j1rma1cwdsfql19zvzhfj2ys5c4lbhjcp6jrnck04xnckxxiy3d";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-07-23 06:18:56 +01:00
|
|
|
preBuild = (lib.strings.optionalString enableX11 ''
|
2019-02-13 11:25:01 +00:00
|
|
|
sed -i "s|\(OCAMLOPT=.*\)$|\1 -I $(echo "${lablgtk}"/lib/ocaml/*/site-lib/lablgtk2)|" src/Makefile.OCaml
|
2021-07-23 06:18:56 +01:00
|
|
|
'') + ''
|
2019-02-13 11:25:01 +00:00
|
|
|
echo -e '\ninstall:\n\tcp $(FSMONITOR)$(EXEC_EXT) $(INSTALLDIR)' >> src/fsmonitor/linux/Makefile
|
2017-02-03 23:37:31 +00:00
|
|
|
'';
|
2011-01-03 18:43:16 +00:00
|
|
|
|
2019-05-14 05:06:54 +01:00
|
|
|
makeFlags = [
|
|
|
|
"INSTALLDIR=$(out)/bin/"
|
|
|
|
"UISTYLE=${if enableX11 then "gtk2" else "text"}"
|
2021-01-15 13:21:58 +00:00
|
|
|
] ++ lib.optional (!ocaml.nativeCompilers) "NATIVE=false";
|
2011-01-03 18:43:16 +00:00
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
preInstall = "mkdir -p $out/bin";
|
2011-01-03 18:43:16 +00:00
|
|
|
|
2021-07-23 06:18:56 +01:00
|
|
|
postInstall = lib.strings.optionalString enableX11 ''
|
2008-01-18 11:28:41 +00:00
|
|
|
for i in $(cd $out/bin && ls); do
|
|
|
|
wrapProgram $out/bin/$i \
|
2020-04-22 13:00:00 +01:00
|
|
|
--run "[ -n \"\$DISPLAY\" ] && (${xset}/bin/xset q | ${gnugrep}/bin/grep -q \"${fontschumachermisc}\" || ${xset}/bin/xset +fp \"${fontschumachermisc}/lib/X11/fonts/misc\")"
|
2008-01-18 11:28:41 +00:00
|
|
|
done
|
2021-07-23 06:18:56 +01:00
|
|
|
|
|
|
|
install -D $src/icons/U.svg $out/share/icons/hicolor/scalable/apps/unison.svg
|
|
|
|
'';
|
2008-06-04 15:24:28 +01:00
|
|
|
|
2012-12-28 18:57:47 +00:00
|
|
|
dontStrip = !ocaml.nativeCompilers;
|
2011-01-03 20:52:49 +00:00
|
|
|
|
2021-07-23 06:18:56 +01:00
|
|
|
desktopItems = lib.lists.optional enableX11 (makeDesktopItem {
|
|
|
|
name = pname;
|
|
|
|
desktopName = "Unison";
|
|
|
|
comment = "Bidirectional file synchronizer";
|
|
|
|
genericName = "File synchronization tool";
|
|
|
|
exec = "unison";
|
|
|
|
icon = "unison";
|
|
|
|
categories = "Utility;FileTools;GTK;";
|
|
|
|
extraDesktopEntries={
|
|
|
|
StartupWMClass="Unison";
|
|
|
|
StartupNotify="true";
|
|
|
|
X-MultipleArgs="false";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2010-01-15 15:09:46 +00:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.cis.upenn.edu/~bcpierce/unison/";
|
2010-01-15 15:09:46 +00:00
|
|
|
description = "Bidirectional file synchronizer";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; unix;
|
2010-01-15 15:09:46 +00:00
|
|
|
};
|
|
|
|
|
2008-06-04 15:24:28 +01:00
|
|
|
})
|