2018-07-21 01:44:44 +01:00
|
|
|
{ lib, stdenv, callPackage, fetchurl
|
|
|
|
, python
|
2019-09-18 18:57:20 +01:00
|
|
|
, jdk, cmake, libxml2, zlib, python3, ncurses5
|
2020-04-28 17:34:07 +01:00
|
|
|
, dotnet-sdk_3
|
2020-12-19 22:14:02 +00:00
|
|
|
, vmopts ? null
|
2013-12-05 22:09:41 +00:00
|
|
|
}:
|
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2017-06-10 21:43:25 +01:00
|
|
|
|
2013-12-05 22:09:41 +00:00
|
|
|
let
|
2020-12-19 22:14:02 +00:00
|
|
|
mkJetBrainsProduct = callPackage ./common.nix { inherit vmopts; };
|
2017-04-01 08:45:25 +01:00
|
|
|
# Sorted alphabetically
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildClion = { name, version, src, license, description, wmClass, ... }:
|
2020-12-21 20:37:28 +00:00
|
|
|
(mkJetBrainsProduct {
|
2016-08-24 21:42:29 +01:00
|
|
|
inherit name version src wmClass jdk;
|
2014-11-04 20:02:25 +00:00
|
|
|
product = "CLion";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/clion/";
|
2014-09-09 13:20:07 +01:00
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
2014-11-04 20:02:25 +00:00
|
|
|
Enhancing productivity for every C and C++
|
2017-08-06 23:05:18 +01:00
|
|
|
developer on Linux, macOS and Windows.
|
2014-09-09 13:20:07 +01:00
|
|
|
'';
|
2017-06-10 21:43:25 +01:00
|
|
|
maintainers = with maintainers; [ edwtjo mic92 ];
|
2014-09-09 13:20:07 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2020-12-21 20:37:28 +00:00
|
|
|
}).overrideAttrs (attrs: {
|
2017-06-10 21:43:25 +01:00
|
|
|
postFixup = (attrs.postFixup or "") + optionalString (stdenv.isLinux) ''
|
|
|
|
(
|
|
|
|
cd $out/clion-${version}
|
|
|
|
# bundled cmake does not find libc
|
2018-07-28 14:55:19 +01:00
|
|
|
rm -rf bin/cmake/linux
|
|
|
|
ln -s ${cmake} bin/cmake/linux
|
2017-06-10 21:43:25 +01:00
|
|
|
|
2018-07-28 14:55:19 +01:00
|
|
|
lldbLibPath=$out/clion-${version}/bin/lldb/linux/lib
|
2017-06-10 21:43:25 +01:00
|
|
|
interp="$(cat $NIX_CC/nix-support/dynamic-linker)"
|
2019-09-18 18:57:20 +01:00
|
|
|
ln -s ${ncurses5.out}/lib/libtinfo.so.5 $lldbLibPath/libtinfo.so.5
|
2017-06-10 21:43:25 +01:00
|
|
|
|
|
|
|
patchelf --set-interpreter $interp \
|
|
|
|
--set-rpath "${lib.makeLibraryPath [ libxml2 zlib stdenv.cc.cc.lib ]}:$lldbLibPath" \
|
2018-07-28 14:55:19 +01:00
|
|
|
bin/lldb/linux/bin/lldb-server
|
2017-12-01 20:54:22 +00:00
|
|
|
|
|
|
|
for i in LLDBFrontend lldb lldb-argdumper; do
|
|
|
|
patchelf --set-interpreter $interp \
|
|
|
|
--set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib ]}:$lldbLibPath" \
|
2018-07-28 14:55:19 +01:00
|
|
|
"bin/lldb/linux/bin/$i"
|
2017-12-01 20:54:22 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
patchelf \
|
2017-06-10 21:43:25 +01:00
|
|
|
--set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib ]}:$lldbLibPath" \
|
2020-12-19 22:06:33 +00:00
|
|
|
bin/lldb/linux/lib/python3.*/lib-dynload/zlib.cpython-*-x86_64-linux-gnu.so
|
2017-12-01 20:54:22 +00:00
|
|
|
|
2017-06-10 21:43:25 +01:00
|
|
|
patchelf \
|
2017-12-01 20:54:22 +00:00
|
|
|
--set-rpath "${lib.makeLibraryPath [ libxml2 zlib stdenv.cc.cc.lib python3 ]}:$lldbLibPath" \
|
2018-07-28 14:55:19 +01:00
|
|
|
bin/lldb/linux/lib/liblldb.so
|
2017-06-10 21:43:25 +01:00
|
|
|
|
2018-07-28 14:55:19 +01:00
|
|
|
gdbLibPath=$out/clion-${version}/bin/gdb/linux/lib
|
|
|
|
patchelf \
|
|
|
|
--set-rpath "$gdbLibPath" \
|
|
|
|
bin/gdb/linux/lib/python3.*/lib-dynload/zlib.cpython-*m-x86_64-linux-gnu.so
|
|
|
|
patchelf --set-interpreter $interp \
|
|
|
|
--set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}:$gdbLibPath" \
|
|
|
|
bin/gdb/linux/bin/gdb
|
|
|
|
patchelf --set-interpreter $interp \
|
|
|
|
--set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib ]}:$gdbLibPath" \
|
|
|
|
bin/gdb/linux/bin/gdbserver
|
|
|
|
|
|
|
|
patchelf --set-interpreter $interp \
|
2020-06-03 10:40:51 +01:00
|
|
|
--set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}" \
|
2018-07-28 14:55:19 +01:00
|
|
|
bin/clang/linux/clangd
|
2017-07-20 13:19:38 +01:00
|
|
|
patchelf --set-interpreter $interp \
|
2018-07-28 14:55:19 +01:00
|
|
|
--set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}" \
|
|
|
|
bin/clang/linux/clang-tidy
|
2017-09-22 10:13:48 +01:00
|
|
|
|
|
|
|
wrapProgram $out/bin/clion \
|
|
|
|
--set CL_JDK "${jdk}"
|
2017-06-10 21:43:25 +01:00
|
|
|
)
|
|
|
|
'';
|
2014-11-04 20:02:25 +00:00
|
|
|
});
|
2014-09-09 13:20:07 +01:00
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildDataGrip = { name, version, src, license, description, wmClass, ... }:
|
2017-04-01 08:45:25 +01:00
|
|
|
(mkJetBrainsProduct {
|
2016-08-24 21:42:29 +01:00
|
|
|
inherit name version src wmClass jdk;
|
2017-04-01 08:45:25 +01:00
|
|
|
product = "DataGrip";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/datagrip/";
|
2014-09-09 13:20:07 +01:00
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
2017-04-01 08:45:25 +01:00
|
|
|
DataGrip is a new IDE from JetBrains built for database admins.
|
|
|
|
It allows you to quickly migrate and refactor relational databases,
|
|
|
|
construct efficient, statically checked SQL queries and much more.
|
2014-09-09 13:20:07 +01:00
|
|
|
'';
|
2020-10-06 20:47:34 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2014-09-09 13:20:07 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildGoland = { name, version, src, license, description, wmClass, ... }:
|
2020-12-21 20:37:28 +00:00
|
|
|
(mkJetBrainsProduct {
|
2017-04-01 10:04:06 +01:00
|
|
|
inherit name version src wmClass jdk;
|
2017-11-23 14:51:52 +00:00
|
|
|
product = "Goland";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/go/";
|
2017-04-01 10:04:06 +01:00
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
2017-11-23 14:51:52 +00:00
|
|
|
Goland is the codename for a new commercial IDE by JetBrains
|
2017-04-01 10:04:06 +01:00
|
|
|
aimed at providing an ergonomic environment for Go development.
|
|
|
|
The new IDE extends the IntelliJ platform with the coding assistance
|
|
|
|
and tool integrations specific for the Go language
|
|
|
|
'';
|
|
|
|
maintainers = [ maintainers.miltador ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2020-12-21 20:37:28 +00:00
|
|
|
}).overrideAttrs (attrs: {
|
2017-10-23 13:53:14 +01:00
|
|
|
postFixup = (attrs.postFixup or "") + ''
|
|
|
|
interp="$(cat $NIX_CC/nix-support/dynamic-linker)"
|
2018-03-31 15:35:23 +01:00
|
|
|
patchelf --set-interpreter $interp $out/goland*/plugins/go/lib/dlv/linux/dlv
|
2017-10-23 13:53:14 +01:00
|
|
|
|
2018-03-31 15:35:23 +01:00
|
|
|
chmod +x $out/goland*/plugins/go/lib/dlv/linux/dlv
|
2017-10-23 13:53:14 +01:00
|
|
|
'';
|
2017-04-01 10:04:06 +01:00
|
|
|
});
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildIdea = { name, version, src, license, description, wmClass, ... }:
|
2019-08-13 22:52:01 +01:00
|
|
|
(mkJetBrainsProduct {
|
2016-08-24 21:42:29 +01:00
|
|
|
inherit name version src wmClass jdk;
|
2017-04-01 08:45:25 +01:00
|
|
|
product = "IDEA";
|
2021-02-15 23:03:41 +00:00
|
|
|
extraLdPath = [ zlib ];
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/idea/";
|
2014-11-04 20:16:59 +00:00
|
|
|
inherit description license;
|
2017-04-01 08:45:25 +01:00
|
|
|
longDescription = ''
|
|
|
|
IDE for Java SE, Groovy & Scala development Powerful
|
|
|
|
environment for building Google Android apps Integration
|
2018-10-02 15:03:18 +01:00
|
|
|
with JUnit, TestNG, popular SCMs, Ant & Maven. Also known
|
|
|
|
as IntelliJ.
|
2017-04-01 08:45:25 +01:00
|
|
|
'';
|
2021-02-15 23:22:05 +00:00
|
|
|
maintainers = with maintainers; [ edwtjo gytis-ivaskevicius ];
|
2021-02-15 23:03:41 +00:00
|
|
|
platforms = [ "x86_64-darwin" "i686-darwin" "i686-linux" "x86_64-linux" ];
|
2014-11-04 20:16:59 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2019-08-27 10:21:13 +01:00
|
|
|
buildMps = { name, version, src, license, description, wmClass, ... }:
|
|
|
|
(mkJetBrainsProduct rec {
|
|
|
|
inherit name version src wmClass jdk;
|
|
|
|
product = "MPS";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-08-27 10:21:13 +01:00
|
|
|
homepage = https://www.jetbrains.com/mps/;
|
|
|
|
inherit license description;
|
|
|
|
longDescription = ''
|
|
|
|
A metaprogramming system which uses projectional editing
|
|
|
|
which allows users to overcome the limits of language
|
|
|
|
parsers, and build DSL editors, such as ones with tables and
|
|
|
|
diagrams.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ rasendubi ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildPhpStorm = { name, version, src, license, description, wmClass, ... }:
|
2017-04-01 08:21:19 +01:00
|
|
|
(mkJetBrainsProduct {
|
2016-08-24 21:42:29 +01:00
|
|
|
inherit name version src wmClass jdk;
|
2014-10-30 10:48:09 +00:00
|
|
|
product = "PhpStorm";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/phpstorm/";
|
2014-10-30 10:48:09 +00:00
|
|
|
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.
|
|
|
|
'';
|
2019-12-26 14:13:48 +00:00
|
|
|
maintainers = with maintainers; [ schristo ma27 ];
|
2014-10-30 10:48:09 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildPycharm = { name, version, src, license, description, wmClass, ... }:
|
2019-08-13 22:52:01 +01:00
|
|
|
(mkJetBrainsProduct {
|
2016-08-24 21:42:29 +01:00
|
|
|
inherit name version src wmClass jdk;
|
2014-11-04 20:02:25 +00:00
|
|
|
product = "PyCharm";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/pycharm/";
|
2014-11-04 20:02:25 +00:00
|
|
|
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!
|
|
|
|
'';
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2014-11-04 20:02:25 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}).override {
|
|
|
|
propagatedUserEnvPkgs = [ python ];
|
|
|
|
};
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildRider = { name, version, src, license, description, wmClass, ... }:
|
2020-12-21 20:37:28 +00:00
|
|
|
(mkJetBrainsProduct {
|
2017-04-01 09:48:52 +01:00
|
|
|
inherit name version src wmClass jdk;
|
|
|
|
product = "Rider";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/rider/";
|
2017-04-01 09:48:52 +01:00
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
|
|
|
JetBrains Rider is a new .NET IDE based on the IntelliJ
|
|
|
|
platform and ReSharper. Rider supports .NET Core,
|
|
|
|
.NET Framework and Mono based projects. This lets you
|
|
|
|
develop a wide array of applications including .NET desktop
|
2017-05-19 16:19:54 +01:00
|
|
|
apps, services and libraries, Unity games, ASP.NET and
|
2017-04-01 09:48:52 +01:00
|
|
|
ASP.NET Core web applications.
|
|
|
|
'';
|
|
|
|
maintainers = [ maintainers.miltador ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2020-12-21 20:37:28 +00:00
|
|
|
}).overrideAttrs (attrs: {
|
2019-09-24 12:08:21 +01:00
|
|
|
patchPhase = lib.optionalString (!stdenv.isDarwin) (attrs.patchPhase + ''
|
2020-04-28 17:34:07 +01:00
|
|
|
rm -rf lib/ReSharperHost/linux-x64/dotnet
|
2020-08-06 23:21:59 +01:00
|
|
|
mkdir -p lib/ReSharperHost/linux-x64/dotnet/
|
|
|
|
ln -s ${dotnet-sdk_3}/bin/dotnet lib/ReSharperHost/linux-x64/dotnet/dotnet
|
2019-09-24 12:08:21 +01:00
|
|
|
'');
|
2017-04-01 09:48:52 +01:00
|
|
|
});
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildRubyMine = { name, version, src, license, description, wmClass, ... }:
|
2019-08-13 22:52:01 +01:00
|
|
|
(mkJetBrainsProduct {
|
2017-04-01 08:45:25 +01:00
|
|
|
inherit name version src wmClass jdk;
|
|
|
|
product = "RubyMine";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/ruby/";
|
2017-04-01 08:45:25 +01:00
|
|
|
inherit description license;
|
|
|
|
longDescription = description;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
buildWebStorm = { name, version, src, license, description, wmClass, ... }:
|
2020-12-21 20:37:28 +00:00
|
|
|
(mkJetBrainsProduct {
|
2016-12-05 21:28:09 +00:00
|
|
|
inherit name version src wmClass jdk;
|
2017-04-01 08:45:25 +01:00
|
|
|
product = "WebStorm";
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jetbrains.com/webstorm/";
|
2016-12-05 21:28:09 +00:00
|
|
|
inherit description license;
|
|
|
|
longDescription = ''
|
2017-04-01 08:45:25 +01:00
|
|
|
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.
|
2016-12-05 21:28:09 +00:00
|
|
|
'';
|
2017-04-01 08:45:25 +01:00
|
|
|
maintainers = with maintainers; [ abaldeau ];
|
2016-12-05 21:28:09 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2020-12-21 20:37:28 +00:00
|
|
|
}).overrideAttrs (attrs: {
|
2018-03-22 11:27:02 +00:00
|
|
|
patchPhase = (attrs.patchPhase or "") + optionalString (stdenv.isLinux) ''
|
|
|
|
# Webstorm tries to use bundled jre if available.
|
|
|
|
# Lets prevent this for the moment
|
2019-08-29 20:13:44 +01:00
|
|
|
rm -r jbr
|
2018-03-22 11:27:02 +00:00
|
|
|
'';
|
2016-12-05 21:28:09 +00:00
|
|
|
});
|
2014-09-09 13:20:07 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2017-04-01 08:45:25 +01:00
|
|
|
# Sorted alphabetically
|
|
|
|
|
2014-11-04 20:02:25 +00:00
|
|
|
clion = buildClion rec {
|
2015-04-16 21:29:20 +01:00
|
|
|
name = "clion-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.3"; /* updated by script */
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "C/C++ IDE. New. Intelligent. Cross-platform";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2014-11-04 20:02:25 +00:00
|
|
|
src = fetchurl {
|
2016-09-04 12:29:15 +01:00
|
|
|
url = "https://download.jetbrains.com/cpp/CLion-${version}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "10s0jkxi892pg7d2slh7cvrd0ch2223qms3c9v1ax0n6ymfkcw14"; /* updated by script */
|
2014-11-04 20:02:25 +00:00
|
|
|
};
|
2016-05-25 03:43:13 +01:00
|
|
|
wmClass = "jetbrains-clion";
|
2019-02-06 16:23:59 +00:00
|
|
|
update-channel = "CLion RELEASE"; # channel's id as in http://www.jetbrains.com/updates/updates.xml
|
2014-11-04 20:02:25 +00:00
|
|
|
};
|
|
|
|
|
2017-04-01 08:45:25 +01:00
|
|
|
datagrip = buildDataGrip rec {
|
|
|
|
name = "datagrip-${version}";
|
2021-02-11 19:31:51 +00:00
|
|
|
version = "2020.3.2"; /* updated by script */
|
2017-04-01 08:45:25 +01:00
|
|
|
description = "Your Swiss Army Knife for Databases and SQL";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2017-04-01 08:45:25 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.jetbrains.com/datagrip/${name}.tar.gz";
|
2021-02-11 19:31:51 +00:00
|
|
|
sha256 = "1wjaavgslwpz4jniszswdy10rk3622i1w3awdwhgjlcc6mwkwz1f"; /* updated by script */
|
2017-04-01 08:45:25 +01:00
|
|
|
};
|
|
|
|
wmClass = "jetbrains-datagrip";
|
2019-02-06 16:25:00 +00:00
|
|
|
update-channel = "DataGrip RELEASE";
|
2017-04-01 08:45:25 +01:00
|
|
|
};
|
|
|
|
|
2017-11-23 14:51:52 +00:00
|
|
|
goland = buildGoland rec {
|
|
|
|
name = "goland-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.4"; /* updated by script */
|
2017-04-01 10:04:06 +01:00
|
|
|
description = "Up and Coming Go IDE";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2017-04-01 10:04:06 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.jetbrains.com/go/${name}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "148rs9w0fqr5xzhnq5bd473j4vnb69kf8yxxjmwdp25z2d7x47ip"; /* updated by script */
|
2017-04-01 10:04:06 +01:00
|
|
|
};
|
2017-11-23 14:51:52 +00:00
|
|
|
wmClass = "jetbrains-goland";
|
2019-02-06 16:25:42 +00:00
|
|
|
update-channel = "GoLand RELEASE";
|
2017-04-01 10:04:06 +01:00
|
|
|
};
|
|
|
|
|
2014-08-25 09:48:26 +01:00
|
|
|
idea-community = buildIdea rec {
|
2014-02-22 22:42:11 +00:00
|
|
|
name = "idea-community-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.3"; /* updated by script */
|
2014-08-25 09:48:26 +01:00
|
|
|
description = "Integrated Development Environment (IDE) by Jetbrains, community edition";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.asl20;
|
2013-12-05 22:09:41 +00:00
|
|
|
src = fetchurl {
|
2015-02-07 12:20:03 +00:00
|
|
|
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "1msfl8qq0aday4ssip73r0y096mrb89mr7z2j4mpqhkzgsmvpjk0"; /* updated by script */
|
2013-12-05 22:09:41 +00:00
|
|
|
};
|
2016-05-25 03:43:13 +01:00
|
|
|
wmClass = "jetbrains-idea-ce";
|
2019-02-06 16:31:35 +00:00
|
|
|
update-channel = "IntelliJ IDEA RELEASE";
|
2013-12-05 22:09:41 +00:00
|
|
|
};
|
|
|
|
|
2014-08-25 09:48:26 +01:00
|
|
|
idea-ultimate = buildIdea rec {
|
2014-02-22 22:42:11 +00:00
|
|
|
name = "idea-ultimate-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.3"; /* updated by script */
|
2014-08-25 09:48:26 +01:00
|
|
|
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2013-12-05 22:09:41 +00:00
|
|
|
src = fetchurl {
|
2019-02-27 10:16:00 +00:00
|
|
|
url = "https://download.jetbrains.com/idea/ideaIU-${version}-no-jbr.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "0szq8lqp1h7kci8kqd1bb3g16j3p5f4dfmbccbyrrwsram3hvjgi"; /* updated by script */
|
2013-12-05 22:09:41 +00:00
|
|
|
};
|
2016-05-25 03:43:13 +01:00
|
|
|
wmClass = "jetbrains-idea";
|
2019-02-06 16:32:22 +00:00
|
|
|
update-channel = "IntelliJ IDEA RELEASE";
|
2013-12-05 22:09:41 +00:00
|
|
|
};
|
|
|
|
|
2019-08-27 10:21:13 +01:00
|
|
|
mps = buildMps rec {
|
|
|
|
name = "mps-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.2"; /* updated by script */
|
2019-08-27 10:21:13 +01:00
|
|
|
description = "Create your own domain-specific language";
|
2021-02-03 11:24:57 +00:00
|
|
|
license = lib.licenses.asl20;
|
2019-08-27 10:21:13 +01:00
|
|
|
src = fetchurl {
|
2021-01-27 14:30:35 +00:00
|
|
|
url = "https://download.jetbrains.com/mps/2020.3/MPS-${version}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "0vskzia48jq50bjdqw993gizvvd59f3qlszbsdp7xg5a3afbk7p3"; /* updated by script */
|
2019-08-27 10:21:13 +01:00
|
|
|
};
|
|
|
|
wmClass = "jetbrains-mps";
|
|
|
|
update-channel = "MPS RELEASE";
|
|
|
|
};
|
2013-12-05 22:09:41 +00:00
|
|
|
|
2017-04-01 08:45:25 +01:00
|
|
|
phpstorm = buildPhpStorm rec {
|
|
|
|
name = "phpstorm-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.3"; /* updated by script */
|
2017-04-01 08:45:25 +01:00
|
|
|
description = "Professional IDE for Web and PHP developers";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2016-09-04 12:20:20 +01:00
|
|
|
src = fetchurl {
|
2017-04-01 08:45:25 +01:00
|
|
|
url = "https://download.jetbrains.com/webide/PhpStorm-${version}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "0arff0882xw1azbxpn1n3wbc5ncg8gmfim3jf6rq2dky8kp9ylkm"; /* updated by script */
|
2016-09-04 12:20:20 +01:00
|
|
|
};
|
2017-04-01 08:45:25 +01:00
|
|
|
wmClass = "jetbrains-phpstorm";
|
2019-02-06 16:33:13 +00:00
|
|
|
update-channel = "PhpStorm RELEASE";
|
2016-09-04 12:20:20 +01:00
|
|
|
};
|
|
|
|
|
2014-10-14 12:26:00 +01:00
|
|
|
pycharm-community = buildPycharm rec {
|
2014-09-09 13:20:07 +01:00
|
|
|
name = "pycharm-community-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.4"; /* updated by script */
|
2015-05-15 15:40:36 +01:00
|
|
|
description = "PyCharm Community Edition";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.asl20;
|
2014-09-09 13:20:07 +01:00
|
|
|
src = fetchurl {
|
2015-11-21 14:35:32 +00:00
|
|
|
url = "https://download.jetbrains.com/python/${name}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "0xh0hb0v3ilgqjljh22c75hkllqgqbpppplni2dz2pv9rb3r5dv5"; /* updated by script */
|
2014-09-09 13:20:07 +01:00
|
|
|
};
|
2016-05-25 03:43:13 +01:00
|
|
|
wmClass = "jetbrains-pycharm-ce";
|
2019-02-06 16:35:13 +00:00
|
|
|
update-channel = "PyCharm RELEASE";
|
2014-09-09 13:20:07 +01:00
|
|
|
};
|
|
|
|
|
2014-10-14 12:26:00 +01:00
|
|
|
pycharm-professional = buildPycharm rec {
|
2014-09-09 13:20:07 +01:00
|
|
|
name = "pycharm-professional-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.4"; /* updated by script */
|
2015-05-15 15:40:36 +01:00
|
|
|
description = "PyCharm Professional Edition";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2014-09-09 13:20:07 +01:00
|
|
|
src = fetchurl {
|
2015-11-21 14:35:32 +00:00
|
|
|
url = "https://download.jetbrains.com/python/${name}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "18gkjc52qpghs721rkbsj03kaf6n8c8sxg57b2d82hjckjgm6q10"; /* updated by script */
|
2014-09-09 13:20:07 +01:00
|
|
|
};
|
2016-05-25 03:43:13 +01:00
|
|
|
wmClass = "jetbrains-pycharm";
|
2019-02-06 16:36:32 +00:00
|
|
|
update-channel = "PyCharm RELEASE";
|
2014-09-09 13:20:07 +01:00
|
|
|
};
|
|
|
|
|
2017-04-01 09:48:52 +01:00
|
|
|
rider = buildRider rec {
|
|
|
|
name = "rider-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.4"; /* updated by script */
|
2017-04-01 09:48:52 +01:00
|
|
|
description = "A cross-platform .NET IDE based on the IntelliJ platform and ReSharper";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2017-04-01 09:48:52 +01:00
|
|
|
src = fetchurl {
|
2018-05-20 14:10:39 +01:00
|
|
|
url = "https://download.jetbrains.com/rider/JetBrains.Rider-${version}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "1v99yqj83aw9j400z3v24n7xnyxzw5vm0b3rwd4yb8w3ajl59gq1"; /* updated by script */
|
2017-04-01 09:48:52 +01:00
|
|
|
};
|
|
|
|
wmClass = "jetbrains-rider";
|
2019-02-06 16:39:08 +00:00
|
|
|
update-channel = "Rider RELEASE";
|
2017-04-01 09:48:52 +01:00
|
|
|
};
|
|
|
|
|
2017-04-01 08:45:25 +01:00
|
|
|
ruby-mine = buildRubyMine rec {
|
|
|
|
name = "ruby-mine-${version}";
|
2021-02-11 19:31:51 +00:00
|
|
|
version = "2020.3.2"; /* updated by script */
|
2017-04-01 08:45:25 +01:00
|
|
|
description = "The Most Intelligent Ruby and Rails IDE";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2014-10-30 10:48:09 +00:00
|
|
|
src = fetchurl {
|
2017-04-01 08:45:25 +01:00
|
|
|
url = "https://download.jetbrains.com/ruby/RubyMine-${version}.tar.gz";
|
2021-02-11 19:31:51 +00:00
|
|
|
sha256 = "17x3sz4jkz2px25gj813xqrrb2cm7mdl6m5a22zg086phym66g3c"; /* updated by script */
|
2014-10-30 10:48:09 +00:00
|
|
|
};
|
2017-04-01 08:45:25 +01:00
|
|
|
wmClass = "jetbrains-rubymine";
|
2019-02-06 16:39:52 +00:00
|
|
|
update-channel = "RubyMine RELEASE";
|
2014-10-30 10:48:09 +00:00
|
|
|
};
|
|
|
|
|
2015-03-29 13:20:02 +01:00
|
|
|
webstorm = buildWebStorm rec {
|
|
|
|
name = "webstorm-${version}";
|
2021-03-20 21:03:58 +00:00
|
|
|
version = "2020.3.3"; /* updated by script */
|
2015-10-04 12:22:06 +01:00
|
|
|
description = "Professional IDE for Web and JavaScript development";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2015-03-29 13:20:02 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.jetbrains.com/webstorm/WebStorm-${version}.tar.gz";
|
2021-03-20 21:03:58 +00:00
|
|
|
sha256 = "0szq7qz5p1ksmqdy1rma5rfl0d9dy9qmhz8k5id4zdpyz2jsacfb"; /* updated by script */
|
2015-03-29 13:20:02 +01:00
|
|
|
};
|
2016-05-25 03:43:13 +01:00
|
|
|
wmClass = "jetbrains-webstorm";
|
2019-02-06 16:40:34 +00:00
|
|
|
update-channel = "WebStorm RELEASE";
|
2015-03-29 13:20:02 +01:00
|
|
|
};
|
|
|
|
|
2014-10-14 12:26:00 +01:00
|
|
|
}
|