-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add IntelliJ IDEA CE version 11. #89
Conversation
The source distribution static binaries of fsnotifier and fsnotifier64 are patched. I'm not sure of the best way to fetch patch both the 32bit and 64bit versions. Only the one that is assumed to be picked by the idea.sh is patched.
0.16.18 was removed from the server.
|
||
tar --strip-components=1 -zxvf out/artifacts/ideaIC-111.SNAPSHOT.tar.gz -C $out | ||
|
||
patchelf --set-interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" $out/bin/${notifierToPatch} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could omit the notifierToPatch
attribute and use "$out"/bin/fsnotifier*
instead.
Conflicts: pkgs/development/compilers/dev86/default.nix pkgs/development/compilers/scala/default.nix
Also add fontconfig checks , change license to "unfree" if using patented code. Inspired by Corey O'Connor in #89 coreyoconnor@27fec0a
I pushed infinality into x-updates, as fontconfig affects very many packages. |
Conflicts: pkgs/misc/emulators/wine/build_winetricks.sh pkgs/misc/emulators/wine/winetricks.nix pkgs/top-level/all-packages.nix
Thanks for finishing the infinality patch! |
I would keep this request. I takes commits by the branch name, so you can change it completely. BTW, I tried to fix the problems in the expression and also update it to 12.0.3 https://github.com/vcunat/nixpkgs/compare/vlada;idea Feel free to build on it. It compiles fine, but on running I get the exceptions below. I haven't looked into it since.
$ ./result/bin/idea.sh
Java HotSpot(TM) 64-Bit Server VM (build 20.7-b02, mixed mode)
Exception in thread "main" java.lang.NoClassDefFoundError: java/lang/ReflectiveOperationException
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:247)
at com.intellij.ide.Bootstrap.main(Bootstrap.java:40)
at com.intellij.ide.Bootstrap.main(Bootstrap.java:34)
at com.intellij.idea.Main.main(Main.java:81)
Caused by: java.lang.ClassNotFoundException: java.lang.ReflectiveOperationException
at com.intellij.util.lang.UrlClassLoader.findClass(UrlClassLoader.java:79)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at com.intellij.util.lang.UrlClassLoader.loadClass(UrlClassLoader.java:92)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
... 5 more
|
@coreyoconnor Do you want this still to be open? |
Closing this for now, feel free to reopen if this is still valid. |
The source distribution static binaries of fsnotifier and fsnotifier64 are patched.
This can be improved: I'm not sure of the best way to fetch patch both the 32bit and 64bit versions. Only the one that is assumed to be picked by the idea.sh is patched.