2016-01-15 18:18:54 +01:00
|
|
|
{ stdenv, callPackage, fetchurl, makeDesktopItem, makeWrapper, patchelf
|
|
|
|
, coreutils, gnugrep, which, git, python, unzip, p7zip
|
|
|
|
, androidsdk, jdk, oraclejdk8
|
2013-12-05 23:09:41 +01:00
|
|
|
}:
|
|
|
|
|
2014-08-22 11:57:40 +02:00
|
|
|
assert stdenv.isLinux;
|
|
|
|
|
2013-12-05 23:09:41 +01:00
|
|
|
let
|
|
|
|
|
2016-01-15 18:18:54 +01:00
|
|
|
bnumber = with stdenv.lib; build: last (splitString "-" build);
|
|
|
|
mkIdeaProduct' = callPackage ./common.nix { };
|
|
|
|
mkIdeaProduct = attrs: mkIdeaProduct' ({
|
|
|
|
# After IDEA 15 we can no longer use OpenJDK.
|
|
|
|
# https://youtrack.jetbrains.com/issue/IDEA-147272
|
|
|
|
jdk = if (bnumber attrs.build) < "143" then jdk else oraclejdk8;
|
|
|
|
} // attrs);
|
2013-12-05 23:09:41 +01:00
|
|
|
|
2014-09-24 12:13:55 +02:00
|
|
|
buildAndroidStudio = { name, version, build, src, license, description }:
|
2015-02-23 19:47:28 +01:00
|
|
|
let drv = (mkIdeaProduct rec {
|
2014-09-24 12:13:55 +02:00
|
|
|
inherit name version build src;
|
|
|
|
product = "Studio";
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://developer.android.com/sdk/installing/studio.html;
|
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
|
|
|
Android development environment based on IntelliJ
|
|
|
|
IDEA providing new features and improvements over
|
|
|
|
Eclipse ADT and will be the official Android IDE
|
|
|
|
once it's ready.
|
|
|
|
'';
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
});
|
2015-02-23 19:47:28 +01:00
|
|
|
in stdenv.lib.overrideDerivation drv (x : {
|
|
|
|
buildInputs = x.buildInputs ++ [ makeWrapper ];
|
|
|
|
installPhase = x.installPhase + ''
|
|
|
|
wrapProgram "$out/bin/android-studio" \
|
|
|
|
--set ANDROID_HOME "${androidsdk}/libexec/android-sdk-linux/"
|
|
|
|
'';
|
|
|
|
});
|
2014-09-24 12:13:55 +02:00
|
|
|
|
2014-11-04 21:02:25 +01:00
|
|
|
buildClion = { name, version, build, src, license, description }:
|
2014-09-09 14:20:07 +02:00
|
|
|
(mkIdeaProduct rec {
|
|
|
|
inherit name version build src;
|
2014-11-04 21:02:25 +01:00
|
|
|
product = "CLion";
|
2014-09-09 14:20:07 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-04 21:02:25 +01:00
|
|
|
homepage = "https://www.jetbrains.com/clion/";
|
2014-09-09 14:20:07 +02:00
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
2014-11-04 21:02:25 +01:00
|
|
|
Enhancing productivity for every C and C++
|
|
|
|
developer on Linux, OS X and Windows.
|
2014-09-09 14:20:07 +02:00
|
|
|
'';
|
2014-11-04 21:02:25 +01:00
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
2014-09-09 14:20:07 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2014-11-04 21:02:25 +01:00
|
|
|
});
|
2014-09-09 14:20:07 +02:00
|
|
|
|
|
|
|
buildIdea = { name, version, build, src, license, description }:
|
|
|
|
(mkIdeaProduct rec {
|
|
|
|
inherit name version build src;
|
|
|
|
product = "IDEA";
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://www.jetbrains.com/idea/";
|
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
|
|
|
IDE for Java SE, Groovy & Scala development Powerful
|
|
|
|
environment for building Google Android apps Integration
|
|
|
|
with JUnit, TestNG, popular SCMs, Ant & Maven.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2014-11-04 21:16:59 +01:00
|
|
|
buildRubyMine = { name, version, build, src, license, description }:
|
|
|
|
(mkIdeaProduct rec {
|
|
|
|
inherit name version build src;
|
|
|
|
product = "RubyMine";
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://www.jetbrains.com/ruby/";
|
|
|
|
inherit description license;
|
|
|
|
longDescription = description;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2014-10-30 11:48:09 +01:00
|
|
|
buildPhpStorm = { name, version, build, src, license, description }:
|
|
|
|
(mkIdeaProduct {
|
|
|
|
inherit name version build src;
|
|
|
|
product = "PhpStorm";
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://www.jetbrains.com/phpstorm/";
|
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
|
|
|
PhpStorm provides an editor for PHP, HTML and JavaScript
|
|
|
|
with on-the-fly code analysis, error prevention and
|
|
|
|
automated refactorings for PHP and JavaScript code.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ schristo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2015-03-29 14:20:02 +02:00
|
|
|
buildWebStorm = { name, version, build, src, license, description }:
|
|
|
|
(mkIdeaProduct {
|
|
|
|
inherit name version build src;
|
|
|
|
product = "WebStorm";
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://www.jetbrains.com/webstorm/";
|
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
|
|
|
WebStorm provides an editor for HTML, JavaScript (incl. Node.js),
|
|
|
|
and CSS with on-the-fly code analysis, error prevention and
|
|
|
|
automated refactorings for JavaScript code.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ abaldeau ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2014-11-04 21:02:25 +01:00
|
|
|
buildPycharm = { name, version, build, src, license, description }:
|
|
|
|
(mkIdeaProduct rec {
|
|
|
|
inherit name version build src;
|
|
|
|
product = "PyCharm";
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://www.jetbrains.com/pycharm/";
|
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
|
|
|
Python IDE with complete set of tools for productive
|
|
|
|
development with Python programming language. In addition, the
|
|
|
|
IDE provides high-class capabilities for professional Web
|
|
|
|
development with Django framework and Google App Engine. It
|
|
|
|
has powerful coding assistance, navigation, a lot of
|
|
|
|
refactoring features, tight integration with various Version
|
|
|
|
Control Systems, Unit testing, powerful all-singing
|
|
|
|
all-dancing Debugger and entire customization. PyCharm is
|
|
|
|
developer driven IDE. It was developed with the aim of
|
|
|
|
providing you almost everything you need for your comfortable
|
|
|
|
and productive development!
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ jgeerds ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}).override {
|
|
|
|
propagatedUserEnvPkgs = [ python ];
|
|
|
|
};
|
|
|
|
|
2014-09-09 14:20:07 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2013-12-05 23:09:41 +01:00
|
|
|
|
2014-09-24 12:13:55 +02:00
|
|
|
android-studio = buildAndroidStudio rec {
|
|
|
|
name = "android-studio-${version}";
|
2015-11-23 22:19:41 +01:00
|
|
|
version = "1.5.0.4";
|
|
|
|
build = "141.2422023";
|
2014-09-24 12:13:55 +02:00
|
|
|
description = "Android development environment based on IntelliJ IDEA";
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}" +
|
|
|
|
"/android-studio-ide-${build}-linux.zip";
|
2015-11-23 22:19:41 +01:00
|
|
|
sha256 = "1sjxs9cq7mdalxmzp6v2gwbg1w8p43c2cp5j4v212w66h5rqv11z";
|
2014-09-24 12:13:55 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-11-04 21:02:25 +01:00
|
|
|
clion = buildClion rec {
|
2015-04-16 22:29:20 +02:00
|
|
|
name = "clion-${version}";
|
2015-06-22 20:38:43 +02:00
|
|
|
version = "1.0.4";
|
|
|
|
build = "141.874";
|
2015-04-28 10:54:58 +02:00
|
|
|
description = "C/C++ IDE. New. Intelligent. Cross-platform";
|
2014-11-04 21:02:25 +01:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
|
|
|
src = fetchurl {
|
2015-03-26 19:02:51 +01:00
|
|
|
url = "https://download.jetbrains.com/cpp/${name}.tar.gz";
|
2015-06-22 20:38:43 +02:00
|
|
|
sha256 = "1cz59h2znzjy7zncc049f2w30kc89rvmk7l51a1y6ymf9s7cj4cm";
|
2014-11-04 21:02:25 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-08-25 10:48:26 +02:00
|
|
|
idea-community = buildIdea rec {
|
2014-02-22 23:42:11 +01:00
|
|
|
name = "idea-community-${version}";
|
2015-12-19 13:35:44 +01:00
|
|
|
version = "15.0.2";
|
|
|
|
build = "IC-143.1184";
|
2014-08-25 10:48:26 +02:00
|
|
|
description = "Integrated Development Environment (IDE) by Jetbrains, community edition";
|
2014-08-05 07:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2013-12-05 23:09:41 +01:00
|
|
|
src = fetchurl {
|
2015-02-07 13:20:03 +01:00
|
|
|
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
|
2015-12-19 13:35:44 +01:00
|
|
|
sha256 = "0y8rrbsb87avn1dhw5r1xb4axpbm1qvgcd0aysir9bqzhx8qg64c";
|
2013-12-05 23:09:41 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-08-25 10:48:26 +02:00
|
|
|
idea-ultimate = buildIdea rec {
|
2014-02-22 23:42:11 +01:00
|
|
|
name = "idea-ultimate-${version}";
|
2015-12-19 13:35:44 +01:00
|
|
|
version = "15.0.2";
|
|
|
|
build = "IU-143.1184";
|
2014-08-25 10:48:26 +02:00
|
|
|
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
|
2013-12-05 23:09:41 +01:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
|
|
|
src = fetchurl {
|
2015-02-07 13:20:03 +01:00
|
|
|
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
|
2015-12-19 13:35:44 +01:00
|
|
|
sha256 = "1r8gw7mv1b0k223k76ib08f4yrrgrw24qmhkbx88rknmls5nsgss";
|
2013-12-05 23:09:41 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-11-04 21:16:59 +01:00
|
|
|
ruby-mine = buildRubyMine rec {
|
|
|
|
name = "ruby-mine-${version}";
|
2015-05-14 16:01:16 +02:00
|
|
|
version = "7.1.2";
|
|
|
|
build = "141.1119";
|
2014-11-04 21:16:59 +01:00
|
|
|
description = "The Most Intelligent Ruby and Rails IDE";
|
|
|
|
license = stdenv.lib.licenses.unfree;
|
|
|
|
src = fetchurl {
|
2015-02-07 13:20:03 +01:00
|
|
|
url = "https://download.jetbrains.com/ruby/RubyMine-${version}.tar.gz";
|
2015-05-14 16:01:16 +02:00
|
|
|
sha256 = "1gz14lv5jhnrnshp7lkx3wgrdf0y60abs4q78yhv2x9dc6ld1gmj";
|
2014-11-04 21:16:59 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-10-14 13:26:00 +02:00
|
|
|
pycharm-community = buildPycharm rec {
|
2014-09-09 14:20:07 +02:00
|
|
|
name = "pycharm-community-${version}";
|
2016-01-12 23:45:06 +01:00
|
|
|
version = "5.0.3";
|
|
|
|
build = "143.1559.1";
|
2015-05-15 16:40:36 +02:00
|
|
|
description = "PyCharm Community Edition";
|
2014-09-09 14:20:07 +02:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
src = fetchurl {
|
2015-11-21 15:35:32 +01:00
|
|
|
url = "https://download.jetbrains.com/python/${name}.tar.gz";
|
2016-01-12 23:45:06 +01:00
|
|
|
sha256 = "1xb3qxhl8ln488v0hmjqkzpyypm7wh941c7syi4cs7plbdp6w4c2";
|
2014-09-09 14:20:07 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-10-14 13:26:00 +02:00
|
|
|
pycharm-professional = buildPycharm rec {
|
2014-09-09 14:20:07 +02:00
|
|
|
name = "pycharm-professional-${version}";
|
2016-01-12 23:45:06 +01:00
|
|
|
version = "5.0.3";
|
|
|
|
build = "143.1559.1";
|
2015-05-15 16:40:36 +02:00
|
|
|
description = "PyCharm Professional Edition";
|
2014-09-09 14:20:07 +02:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
|
|
|
src = fetchurl {
|
2015-11-21 15:35:32 +01:00
|
|
|
url = "https://download.jetbrains.com/python/${name}.tar.gz";
|
2016-01-12 23:45:06 +01:00
|
|
|
sha256 = "1v2g9867nn3id1zfbg4zwj0c0z9d72rl9c1dz6vs2c4j0y4gy9xl";
|
2014-09-09 14:20:07 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-10-30 11:48:09 +01:00
|
|
|
phpstorm = buildPhpStorm rec {
|
|
|
|
name = "phpstorm-${version}";
|
2015-10-04 13:22:06 +02:00
|
|
|
version = "10.0.1";
|
|
|
|
build = "PS-143.382";
|
2014-10-30 11:48:09 +01:00
|
|
|
description = "Professional IDE for Web and PHP developers";
|
|
|
|
license = stdenv.lib.licenses.unfree;
|
|
|
|
src = fetchurl {
|
2015-02-07 13:20:03 +01:00
|
|
|
url = "https://download.jetbrains.com/webide/PhpStorm-${version}.tar.gz";
|
2015-10-04 13:22:06 +02:00
|
|
|
sha256 = "12bqil8pxzmbv8a7pxn2529ph2x7szr3wvkvgxaisydm463kpdk8";
|
2014-10-30 11:48:09 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-03-29 14:20:02 +02:00
|
|
|
webstorm = buildWebStorm rec {
|
|
|
|
name = "webstorm-${version}";
|
2015-06-22 20:38:43 +02:00
|
|
|
version = "10.0.4";
|
|
|
|
build = "141.1550";
|
2015-10-04 13:22:06 +02:00
|
|
|
description = "Professional IDE for Web and JavaScript development";
|
2015-03-29 14:20:02 +02:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.jetbrains.com/webstorm/WebStorm-${version}.tar.gz";
|
2015-06-22 20:38:43 +02:00
|
|
|
sha256 = "171i544ssvjnbr1vq6ncxlj38swsygacavsa427qa4s5wzyvdipj";
|
2015-03-29 14:20:02 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-10-14 13:26:00 +02:00
|
|
|
}
|