2011-01-03 20:52:49 +00:00
|
|
|
{stdenv, fetchurl, ocaml, lablgtk, fontschumachermisc, xset, makeWrapper, ncurses
|
2011-01-03 18:43:16 +00:00
|
|
|
, enableX11 ? true}:
|
2007-08-10 08:21:31 +00:00
|
|
|
|
2008-06-04 14:24:28 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
|
|
|
|
2016-07-25 19:50:09 +00:00
|
|
|
name = "unison-2.48.4";
|
2007-08-10 08:21:31 +00:00
|
|
|
src = fetchurl {
|
2014-03-22 22:37:05 +00:00
|
|
|
url = "http://www.seas.upenn.edu/~bcpierce/unison/download/releases/stable/${name}.tar.gz";
|
2016-07-25 19:50:09 +00:00
|
|
|
sha256 = "30aa53cd671d673580104f04be3cf81ac1e20a2e8baaf7274498739d59e99de8";
|
2007-08-10 08:21:31 +00:00
|
|
|
};
|
|
|
|
|
2011-01-03 20:52:49 +00:00
|
|
|
buildInputs = [ ocaml makeWrapper ncurses ];
|
2007-08-10 08:21:31 +00:00
|
|
|
|
2017-02-03 23:37:31 +00:00
|
|
|
preBuild = (if enableX11 then ''
|
2011-01-02 17:34:19 +00:00
|
|
|
sed -i "s|\(OCAMLOPT=.*\)$|\1 -I $(echo "${lablgtk}"/lib/ocaml/*/site-lib/lablgtk2)|" Makefile.OCaml
|
2017-02-03 23:37:31 +00:00
|
|
|
'' else "") + ''
|
|
|
|
echo -e '\ninstall:\n\tcp $(FSMONITOR)$(EXEC_EXT) $(INSTALLDIR)' >> fsmonitor/linux/Makefile
|
|
|
|
'';
|
2011-01-03 18:43:16 +00:00
|
|
|
|
2011-01-03 20:52:49 +00:00
|
|
|
makeFlags = "INSTALLDIR=$(out)/bin/" + (if enableX11 then " UISTYLE=gtk2" else "")
|
2012-07-27 18:37:08 +00:00
|
|
|
+ (if ! ocaml.nativeCompilers then " NATIVE=false" else "");
|
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
|
|
|
|
|
|
|
postInstall = if enableX11 then ''
|
2008-01-18 11:28:41 +00:00
|
|
|
for i in $(cd $out/bin && ls); do
|
|
|
|
wrapProgram $out/bin/$i \
|
2010-05-17 16:16:48 +00:00
|
|
|
--run "[ -n \"\$DISPLAY\" ] && (${xset}/bin/xset q | grep -q \"${fontschumachermisc}\" || ${xset}/bin/xset +fp \"${fontschumachermisc}/lib/X11/fonts/misc\")"
|
2008-01-18 11:28:41 +00:00
|
|
|
done
|
2011-01-03 18:43:16 +00:00
|
|
|
'' else "";
|
2008-06-04 14:24:28 +00:00
|
|
|
|
2012-12-28 18:57:47 +00:00
|
|
|
dontStrip = !ocaml.nativeCompilers;
|
2011-01-03 20:52:49 +00:00
|
|
|
|
2010-01-15 15:09:46 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.cis.upenn.edu/~bcpierce/unison/;
|
|
|
|
description = "Bidirectional file synchronizer";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-01-15 15:09:46 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
|
2008-06-04 14:24:28 +00:00
|
|
|
})
|