2008-01-30 18:20:48 +01:00
|
|
|
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
2008-09-07 23:17:49 +02:00
|
|
|
name = "freemind-0.9.0_Beta_20";
|
2007-12-12 07:42:37 +01:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2008-09-07 23:17:49 +02:00
|
|
|
url = mirror://sourceforge/freemind/freemind-src-0.9.0_Beta_20.tar.gz;
|
|
|
|
sha256 = "1ja573n0g9zpdrljabgps20njg1p76hvsv8xjb56cii2dr77yspv";
|
2007-12-12 07:42:37 +01:00
|
|
|
};
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
buildInputs = [jdk ant];
|
2007-12-12 07:42:37 +01:00
|
|
|
|
2008-02-27 01:01:14 +01:00
|
|
|
phases="unpackPhase buildPhase installPhase";
|
2007-12-12 07:42:37 +01:00
|
|
|
|
|
|
|
buildPhase="ant dist";
|
|
|
|
# LIBXCB_ALLOW_SLOPPY_LOCK=true :
|
|
|
|
# don't know yet what this option really means but I'm no longer getting
|
|
|
|
# Checking Java Version...
|
|
|
|
# Locking assertion failure. Backtrace:
|
|
|
|
# java: xcb_xlib.c:82: xcb_xlib_unlock: Assertion `c->xlib.lock' failed
|
|
|
|
# this way
|
|
|
|
# reference and more info https://bugs.launchpad.net/ubuntu/+source/sun-java5/+bug/86103
|
|
|
|
# JDK 7 beta seems to have fixed this (bug ?)
|
|
|
|
|
2008-09-07 23:17:49 +02:00
|
|
|
installPhase=''
|
|
|
|
ensureDir $out/{bin,nix-support}
|
|
|
|
cp -r ../bin/dist $out/nix-support
|
|
|
|
sed -i 's/which/type -p/' $out/nix-support/dist/freemind.sh
|
|
|
|
cat > $out/bin/freemind << EOF
|
|
|
|
#!/bin/sh
|
2009-10-13 23:45:30 +02:00
|
|
|
export PATH=${args.coreutils}/bin:${args.gnugrep}/bin:"$PATH"
|
|
|
|
export JAVA_HOME="${jre}"
|
|
|
|
export LIBXCB_ALLOW_SLOPPY_LOCK=true
|
|
|
|
$out/nix-support/dist/freemind.sh
|
2008-09-07 23:17:49 +02:00
|
|
|
EOF
|
|
|
|
|
|
|
|
chmod +x $out/{bin/freemind,nix-support/dist/freemind.sh}
|
|
|
|
'';
|
2007-12-12 07:42:37 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "mind mapping software";
|
|
|
|
homepage = http://freemind.sourceforge.net/wiki/index.php/Main_Page;
|
|
|
|
license = "GPL";
|
|
|
|
};
|
|
|
|
}
|