summary refs log tree commit diff
path: root/pkgs/applications/misc/freemind
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-16 21:29:35 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-16 21:29:35 +0000
commitc9b077f296ecfcdc00c49822cac227bf10a471d2 (patch)
tree736f7c77c631a58e773ba51e58d80f24dedc14b6 /pkgs/applications/misc/freemind
parentc86da889cc12794daaff158021beecb79a036406 (diff)
downloadnixpkgs-c9b077f296ecfcdc00c49822cac227bf10a471d2.tar
nixpkgs-c9b077f296ecfcdc00c49822cac227bf10a471d2.tar.gz
nixpkgs-c9b077f296ecfcdc00c49822cac227bf10a471d2.tar.bz2
nixpkgs-c9b077f296ecfcdc00c49822cac227bf10a471d2.tar.lz
nixpkgs-c9b077f296ecfcdc00c49822cac227bf10a471d2.tar.xz
nixpkgs-c9b077f296ecfcdc00c49822cac227bf10a471d2.tar.zst
nixpkgs-c9b077f296ecfcdc00c49822cac227bf10a471d2.zip
Updating freemind, and making it build.
(A hack about mkdir... strange ant. I don't know how it is supposed to work)


svn path=/nixpkgs/trunk/; revision=20061
Diffstat (limited to 'pkgs/applications/misc/freemind')
-rw-r--r--pkgs/applications/misc/freemind/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/applications/misc/freemind/default.nix b/pkgs/applications/misc/freemind/default.nix
index 525b65caa69..f0e5f6ab078 100644
--- a/pkgs/applications/misc/freemind/default.nix
+++ b/pkgs/applications/misc/freemind/default.nix
@@ -1,15 +1,20 @@
 args: with args;
 stdenv.mkDerivation {
-  name = "freemind-0.9.0_Beta_20";
+  name = "freemind-0.9.0_RC_6";
 
   src = fetchurl {
-    url = mirror://sourceforge/freemind/freemind-src-0.9.0_Beta_20.tar.gz;
-    sha256 = "1ja573n0g9zpdrljabgps20njg1p76hvsv8xjb56cii2dr77yspv";
+    url = mirror://sourceforge/freemind/freemind-src-0.9.0_RC_6.tar.gz;
+    sha256 = "0qxpwqmb4xd8c83zh76gczmx0hsx5m209k7p60kh7c4f25snhngf";
   };
 
   buildInputs = [jdk ant];
 
-  phases="unpackPhase buildPhase installPhase";
+  phases="unpackPhase patchPhase buildPhase installPhase";
+
+  patchPhase=''
+    # There is a complain about this. I don't understand it.
+    mkdir plugins/plugins
+  '';
 
   buildPhase="ant dist";
 # LIBXCB_ALLOW_SLOPPY_LOCK=true :