2011-01-03 19:43:16 +01:00
|
|
|
{stdenv, fetchurl, ocaml, lablgtk, fontschumachermisc, xset, makeWrapper
|
|
|
|
, enableX11 ? true}:
|
2007-08-10 10:21:31 +02:00
|
|
|
|
2008-06-04 16:24:28 +02:00
|
|
|
stdenv.mkDerivation (rec {
|
|
|
|
|
2010-01-15 16:09:46 +01:00
|
|
|
name = "unison-2.32.52";
|
2007-08-10 10:21:31 +02:00
|
|
|
src = fetchurl {
|
2010-01-15 16:09:46 +01:00
|
|
|
url = "http://www.seas.upenn.edu/~bcpierce/unison/download/releases/${name}/${name}.tar.gz";
|
|
|
|
sha256 = "11844yh1gpjjapn8pvc14hla7g70spwqy6h61qk2is83mpafahhm";
|
2007-08-10 10:21:31 +02:00
|
|
|
};
|
|
|
|
|
2008-01-18 12:28:41 +01:00
|
|
|
buildInputs = [ocaml makeWrapper];
|
2007-08-10 10:21:31 +02:00
|
|
|
|
2011-01-03 19:43:16 +01:00
|
|
|
preBuild = if enableX11 then ''
|
2011-01-02 18:34:19 +01:00
|
|
|
sed -i "s|\(OCAMLOPT=.*\)$|\1 -I $(echo "${lablgtk}"/lib/ocaml/*/site-lib/lablgtk2)|" Makefile.OCaml
|
2011-01-03 19:43:16 +01:00
|
|
|
'' else "";
|
|
|
|
|
|
|
|
makeFlags = "INSTALLDIR=$(out)/bin/" + (if enableX11 then "UISTYLE=gtk2" else "");
|
|
|
|
|
2007-08-10 10:21:31 +02:00
|
|
|
preInstall = "ensureDir $out/bin";
|
2011-01-03 19:43:16 +01:00
|
|
|
|
|
|
|
postInstall = if enableX11 then ''
|
2008-01-18 12:28:41 +01:00
|
|
|
for i in $(cd $out/bin && ls); do
|
|
|
|
wrapProgram $out/bin/$i \
|
2010-05-17 18:16:48 +02:00
|
|
|
--run "[ -n \"\$DISPLAY\" ] && (${xset}/bin/xset q | grep -q \"${fontschumachermisc}\" || ${xset}/bin/xset +fp \"${fontschumachermisc}/lib/X11/fonts/misc\")"
|
2008-01-18 12:28:41 +01:00
|
|
|
done
|
2011-01-03 19:43:16 +01:00
|
|
|
'' else "";
|
2008-06-04 16:24:28 +02:00
|
|
|
|
2010-01-15 16:09:46 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.cis.upenn.edu/~bcpierce/unison/;
|
|
|
|
description = "Bidirectional file synchronizer";
|
|
|
|
license = "GPLv3+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
|
2008-06-04 16:24:28 +02:00
|
|
|
})
|