mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
bcdfa18846
Turns out Rider was previously relying on having libstdc++ in LD_LIBRARY_PATH, because the binaries were not patched properly. Rewrite the patching to use autoPatchelf similar to CLion so that the RPATH of the binaries are adjusted. While at it also patch all the binaries in the dotCommon and dotTrace plugins. Those seem to need zlib and fontconfig which were completely missing before (they are probably only called when using certain functionality of the IDE). icu doesn't actually seem to be needed (autoPatchelf does not complain that it's missing) and the IDE starts fine without it, so drop it for now.
590 lines
21 KiB
Nix
590 lines
21 KiB
Nix
{ lib
|
|
, stdenv
|
|
, callPackage
|
|
, fetchurl
|
|
, jdk
|
|
, cmake
|
|
, gdb
|
|
, zlib
|
|
, python3
|
|
, lldb
|
|
, dotnet-sdk_7
|
|
, maven
|
|
, autoPatchelfHook
|
|
, libdbusmenu
|
|
, patchelf
|
|
, openssl
|
|
, expat
|
|
, libxcrypt-legacy
|
|
, fontconfig
|
|
, vmopts ? null
|
|
}:
|
|
|
|
let
|
|
platforms = lib.platforms.linux ++ [ "x86_64-darwin" "aarch64-darwin" ];
|
|
ideaPlatforms = [ "x86_64-darwin" "i686-darwin" "i686-linux" "x86_64-linux" "aarch64-darwin" ];
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
versions = builtins.fromJSON (lib.readFile (./versions.json));
|
|
versionKey = if stdenv.isLinux then "linux" else system;
|
|
products = versions.${versionKey} or (throw "Unsupported system: ${system}");
|
|
|
|
package = if stdenv.isDarwin then ./darwin.nix else ./linux.nix;
|
|
mkJetBrainsProduct = callPackage package { inherit vmopts; };
|
|
|
|
# Sorted alphabetically
|
|
|
|
buildClion = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "CLion";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/clion/";
|
|
inherit description license platforms;
|
|
longDescription = ''
|
|
Enhancing productivity for every C and C++
|
|
developer on Linux, macOS and Windows.
|
|
'';
|
|
maintainers = with maintainers; [ edwtjo mic92 tymscar ];
|
|
};
|
|
}).overrideAttrs (attrs: {
|
|
nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ lib.optionals (stdenv.isLinux) [
|
|
autoPatchelfHook
|
|
];
|
|
buildInputs = (attrs.buildInputs or [ ]) ++ lib.optionals (stdenv.isLinux) [
|
|
python3
|
|
stdenv.cc.cc
|
|
libdbusmenu
|
|
openssl.out
|
|
expat
|
|
libxcrypt-legacy
|
|
];
|
|
dontAutoPatchelf = true;
|
|
postFixup = (attrs.postFixup or "") + lib.optionalString (stdenv.isLinux) ''
|
|
(
|
|
cd $out/clion
|
|
|
|
# I think the included gdb has a couple of patches, so we patch it instead of replacing
|
|
ls -d $PWD/bin/gdb/linux/x64/lib/python3.8/lib-dynload/* |
|
|
xargs patchelf \
|
|
--replace-needed libssl.so.10 libssl.so \
|
|
--replace-needed libcrypto.so.10 libcrypto.so
|
|
|
|
ls -d $PWD/bin/lldb/linux/x64/lib/python3.8/lib-dynload/* |
|
|
xargs patchelf \
|
|
--replace-needed libssl.so.10 libssl.so \
|
|
--replace-needed libcrypto.so.10 libcrypto.so
|
|
|
|
autoPatchelf $PWD/bin
|
|
)
|
|
'';
|
|
});
|
|
|
|
buildDataGrip = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "DataGrip";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/datagrip/";
|
|
inherit description license platforms;
|
|
longDescription = ''
|
|
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.
|
|
'';
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
});
|
|
|
|
buildDataSpell = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "DataSpell";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/dataspell/";
|
|
inherit description license platforms;
|
|
longDescription = ''
|
|
DataSpell is a new IDE from JetBrains built for Data Scientists.
|
|
Mainly it integrates Jupyter notebooks in the IntelliJ platform.
|
|
'';
|
|
maintainers = with maintainers; [ leona ];
|
|
};
|
|
});
|
|
|
|
buildGateway = { pname, version, src, license, description, wmClass, buildNumber, product, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber product;
|
|
productShort = "Gateway";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/remote-development/gateway/";
|
|
inherit description license platforms;
|
|
longDescription = ''
|
|
JetBrains Gateway is a lightweight launcher that connects a remote
|
|
server with your local machine, downloads necessary components on the
|
|
backend, and opens your project in JetBrains Client.
|
|
'';
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
});
|
|
|
|
buildGoland = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "Goland";
|
|
extraWrapperArgs = [
|
|
# fortify source breaks build since delve compiles with -O0
|
|
''--prefix CGO_CPPFLAGS " " "-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0"''
|
|
];
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/go/";
|
|
inherit description license platforms;
|
|
longDescription = ''
|
|
Goland is the codename for a new commercial IDE by JetBrains
|
|
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 = with maintainers; [ tymscar ];
|
|
};
|
|
}).overrideAttrs (attrs: {
|
|
postFixup = (attrs.postFixup or "") + lib.optionalString stdenv.isLinux ''
|
|
interp="$(cat $NIX_CC/nix-support/dynamic-linker)"
|
|
patchelf --set-interpreter $interp $out/goland/plugins/go-plugin/lib/dlv/linux/dlv
|
|
chmod +x $out/goland/plugins/go-plugin/lib/dlv/linux/dlv
|
|
'';
|
|
});
|
|
|
|
buildIdea = { pname, version, src, license, description, wmClass, buildNumber, product, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber product;
|
|
productShort = "IDEA";
|
|
extraLdPath = [ zlib ];
|
|
extraWrapperArgs = [
|
|
''--set M2_HOME "${maven}/maven"''
|
|
''--set M2 "${maven}/maven/bin"''
|
|
];
|
|
meta = with 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. Also known
|
|
as IntelliJ.
|
|
'';
|
|
maintainers = with maintainers; [ edwtjo gytis-ivaskevicius steinybot AnatolyPopov tymscar ];
|
|
platforms = ideaPlatforms;
|
|
};
|
|
});
|
|
|
|
buildMps = { pname, version, src, license, description, wmClass, product, buildNumber, ... }:
|
|
(mkJetBrainsProduct rec {
|
|
inherit pname version src wmClass jdk buildNumber product;
|
|
productShort = "MPS";
|
|
meta = with lib; {
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
|
homepage = "https://www.jetbrains.com/mps/";
|
|
inherit license description platforms;
|
|
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 ];
|
|
};
|
|
});
|
|
|
|
buildPhpStorm = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "PhpStorm";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/phpstorm/";
|
|
inherit description license platforms;
|
|
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; [ dritter tymscar ];
|
|
};
|
|
});
|
|
|
|
buildPycharm = { pname, version, src, license, description, wmClass, buildNumber, product, cythonSpeedup ? stdenv.isLinux, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber product;
|
|
productShort = "PyCharm";
|
|
meta = with lib; {
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
|
homepage = "https://www.jetbrains.com/pycharm/";
|
|
inherit description license platforms;
|
|
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; [ genericnerdyusername tymscar ];
|
|
};
|
|
}).overrideAttrs (finalAttrs: previousAttrs: lib.optionalAttrs cythonSpeedup {
|
|
buildInputs = with python3.pkgs; [ python3 setuptools ];
|
|
preInstall = ''
|
|
echo "compiling cython debug speedups"
|
|
if [[ -d plugins/python-ce ]]; then
|
|
${python3.interpreter} plugins/python-ce/helpers/pydev/setup_cython.py build_ext --inplace
|
|
else
|
|
${python3.interpreter} plugins/python/helpers/pydev/setup_cython.py build_ext --inplace
|
|
fi
|
|
'';
|
|
# See https://www.jetbrains.com/help/pycharm/2022.1/cython-speedups.html
|
|
});
|
|
|
|
buildRider = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "Rider";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/rider/";
|
|
inherit description license platforms;
|
|
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
|
|
apps, services and libraries, Unity games, ASP.NET and
|
|
ASP.NET Core web applications.
|
|
'';
|
|
maintainers = with maintainers; [ raphaelr ];
|
|
};
|
|
}).overrideAttrs (attrs: {
|
|
nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ lib.optionals (stdenv.isLinux) [
|
|
autoPatchelfHook
|
|
];
|
|
buildInputs = (attrs.buildInputs or [ ]) ++ lib.optionals (stdenv.isLinux) [
|
|
stdenv.cc.cc
|
|
zlib
|
|
fontconfig # plugins/dotTrace/DotFiles/linux-x64/libSkiaSharp.so
|
|
];
|
|
dontAutoPatchelf = true;
|
|
postFixup = (attrs.postFixup or "") + lib.optionalString (stdenv.isLinux) ''
|
|
(
|
|
cd $out/rider
|
|
|
|
# Remove dotnet copy first so it's not considered by autoPatchElf
|
|
rm -rf lib/ReSharperHost/linux-x64/dotnet
|
|
autoPatchelf \
|
|
lib/ReSharperHost/linux-x64/ \
|
|
plugins/dotCommon/DotFiles/linux-x64/ \
|
|
plugins/dotTrace/DotFiles/linux-x64/
|
|
ln -s ${dotnet-sdk_7} lib/ReSharperHost/linux-x64/dotnet
|
|
)
|
|
'';
|
|
});
|
|
|
|
buildRubyMine = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "RubyMine";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/ruby/";
|
|
inherit description license platforms;
|
|
longDescription = description;
|
|
maintainers = with maintainers; [ edwtjo tymscar ];
|
|
};
|
|
});
|
|
|
|
buildRustRover = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "RustRover";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/rust/";
|
|
inherit description license platforms;
|
|
longDescription = description;
|
|
};
|
|
}).overrideAttrs (attrs: {
|
|
nativeBuildInputs = (attrs.nativeBuildInputs or [ ]) ++ lib.optionals (stdenv.isLinux) [
|
|
autoPatchelfHook
|
|
];
|
|
buildInputs = (attrs.buildInputs or [ ]) ++ lib.optionals (stdenv.isLinux) [
|
|
python3
|
|
stdenv.cc.cc
|
|
libdbusmenu
|
|
openssl.out
|
|
libxcrypt-legacy
|
|
];
|
|
dontAutoPatchelf = true;
|
|
postFixup = (attrs.postFixup or "") + lib.optionalString (stdenv.isLinux) ''
|
|
(
|
|
cd $out/rust-rover
|
|
|
|
# Copied over from clion (gdb seems to have a couple of patches)
|
|
ls -d $PWD/bin/gdb/linux/x64/lib/python3.8/lib-dynload/* |
|
|
xargs patchelf \
|
|
--replace-needed libssl.so.10 libssl.so \
|
|
--replace-needed libcrypto.so.10 libcrypto.so
|
|
|
|
ls -d $PWD/bin/lldb/linux/x64/lib/python3.8/lib-dynload/* |
|
|
xargs patchelf \
|
|
--replace-needed libssl.so.10 libssl.so \
|
|
--replace-needed libcrypto.so.10 libcrypto.so
|
|
|
|
autoPatchelf $PWD/bin
|
|
|
|
interp="$(cat $NIX_CC/nix-support/dynamic-linker)"
|
|
patchelf --set-interpreter $interp $PWD/plugins/intellij-rust/bin/linux/x86-64/intellij-rust-native-helper
|
|
chmod +x $PWD/plugins/intellij-rust/bin/linux/x86-64/intellij-rust-native-helper
|
|
)
|
|
'';
|
|
});
|
|
|
|
buildWebStorm = { pname, version, src, license, description, wmClass, buildNumber, ... }:
|
|
(mkJetBrainsProduct {
|
|
inherit pname version src wmClass jdk buildNumber;
|
|
product = "WebStorm";
|
|
meta = with lib; {
|
|
homepage = "https://www.jetbrains.com/webstorm/";
|
|
inherit description license platforms;
|
|
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 tymscar ];
|
|
};
|
|
});
|
|
|
|
in
|
|
|
|
{
|
|
# Sorted alphabetically
|
|
|
|
clion = buildClion rec {
|
|
pname = "clion";
|
|
version = products.clion.version;
|
|
buildNumber = products.clion.build_number;
|
|
description = "C/C++ IDE. New. Intelligent. Cross-platform";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.clion.url;
|
|
sha256 = products.clion.sha256;
|
|
};
|
|
wmClass = "jetbrains-clion";
|
|
update-channel = products.clion.update-channel;
|
|
};
|
|
|
|
datagrip = buildDataGrip rec {
|
|
pname = "datagrip";
|
|
version = products.datagrip.version;
|
|
buildNumber = products.datagrip.build_number;
|
|
description = "Your Swiss Army Knife for Databases and SQL";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.datagrip.url;
|
|
sha256 = products.datagrip.sha256;
|
|
};
|
|
wmClass = "jetbrains-datagrip";
|
|
update-channel = products.datagrip.update-channel;
|
|
};
|
|
|
|
dataspell = buildDataSpell rec {
|
|
pname = "dataspell";
|
|
version = products.dataspell.version;
|
|
buildNumber = products.dataspell.build_number;
|
|
description = "The IDE for Professional Data Scientists";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.dataspell.url;
|
|
sha256 = products.dataspell.sha256;
|
|
};
|
|
wmClass = "jetbrains-dataspell";
|
|
update-channel = products.dataspell.update-channel;
|
|
};
|
|
|
|
gateway = buildGateway rec {
|
|
pname = "gateway";
|
|
product = "JetBrains Gateway";
|
|
version = products.gateway.version;
|
|
buildNumber = products.gateway.build_number;
|
|
description = "Your single entry point to all remote development environments";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.gateway.url;
|
|
sha256 = products.gateway.sha256;
|
|
};
|
|
wmClass = "jetbrains-gateway";
|
|
update-channel = products.gateway.update-channel;
|
|
};
|
|
|
|
goland = buildGoland rec {
|
|
pname = "goland";
|
|
version = products.goland.version;
|
|
buildNumber = products.goland.build_number;
|
|
description = "Up and Coming Go IDE";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.goland.url;
|
|
sha256 = products.goland.sha256;
|
|
};
|
|
wmClass = "jetbrains-goland";
|
|
update-channel = products.goland.update-channel;
|
|
};
|
|
|
|
idea-community = buildIdea rec {
|
|
pname = "idea-community";
|
|
product = "IntelliJ IDEA CE";
|
|
version = products.idea-community.version;
|
|
buildNumber = products.idea-community.build_number;
|
|
description = "Integrated Development Environment (IDE) by Jetbrains, community edition";
|
|
license = lib.licenses.asl20;
|
|
src = fetchurl {
|
|
url = products.idea-community.url;
|
|
sha256 = products.idea-community.sha256;
|
|
};
|
|
wmClass = "jetbrains-idea-ce";
|
|
update-channel = products.idea-community.update-channel;
|
|
};
|
|
|
|
idea-ultimate = buildIdea rec {
|
|
pname = "idea-ultimate";
|
|
product = "IntelliJ IDEA";
|
|
version = products.idea-ultimate.version;
|
|
buildNumber = products.idea-ultimate.build_number;
|
|
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.idea-ultimate.url;
|
|
sha256 = products.idea-ultimate.sha256;
|
|
};
|
|
wmClass = "jetbrains-idea";
|
|
update-channel = products.idea-ultimate.update-channel;
|
|
};
|
|
|
|
mps = buildMps rec {
|
|
pname = "mps";
|
|
product = "MPS ${products.mps.version}";
|
|
version = products.mps.version;
|
|
buildNumber = products.mps.build_number;
|
|
description = "Create your own domain-specific language";
|
|
license = lib.licenses.asl20;
|
|
src = fetchurl {
|
|
url = products.mps.url;
|
|
sha256 = products.mps.sha256;
|
|
};
|
|
wmClass = "jetbrains-mps";
|
|
update-channel = products.mps.update-channel;
|
|
};
|
|
|
|
phpstorm = buildPhpStorm rec {
|
|
pname = "phpstorm";
|
|
version = products.phpstorm.version;
|
|
buildNumber = products.phpstorm.build_number;
|
|
description = "Professional IDE for Web and PHP developers";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.phpstorm.url;
|
|
sha256 = products.phpstorm.sha256;
|
|
};
|
|
wmClass = "jetbrains-phpstorm";
|
|
update-channel = products.phpstorm.update-channel;
|
|
};
|
|
|
|
pycharm-community = buildPycharm rec {
|
|
pname = "pycharm-community";
|
|
product = "PyCharm CE";
|
|
version = products.pycharm-community.version;
|
|
buildNumber = products.pycharm-community.build_number;
|
|
description = "PyCharm Community Edition";
|
|
license = lib.licenses.asl20;
|
|
src = fetchurl {
|
|
url = products.pycharm-community.url;
|
|
sha256 = products.pycharm-community.sha256;
|
|
};
|
|
wmClass = "jetbrains-pycharm-ce";
|
|
update-channel = products.pycharm-community.update-channel;
|
|
};
|
|
|
|
pycharm-professional = buildPycharm rec {
|
|
pname = "pycharm-professional";
|
|
product = "PyCharm";
|
|
version = products.pycharm-professional.version;
|
|
buildNumber = products.pycharm-community.build_number;
|
|
description = "PyCharm Professional Edition";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.pycharm-professional.url;
|
|
sha256 = products.pycharm-professional.sha256;
|
|
};
|
|
wmClass = "jetbrains-pycharm";
|
|
update-channel = products.pycharm-professional.update-channel;
|
|
};
|
|
|
|
rider = buildRider rec {
|
|
pname = "rider";
|
|
version = products.rider.version;
|
|
buildNumber = products.rider.build_number;
|
|
description = "A cross-platform .NET IDE based on the IntelliJ platform and ReSharper";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.rider.url;
|
|
sha256 = products.rider.sha256;
|
|
};
|
|
wmClass = "jetbrains-rider";
|
|
update-channel = products.rider.update-channel;
|
|
};
|
|
|
|
ruby-mine = buildRubyMine rec {
|
|
pname = "ruby-mine";
|
|
version = products.ruby-mine.version;
|
|
buildNumber = products.ruby-mine.build_number;
|
|
description = "The Most Intelligent Ruby and Rails IDE";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.ruby-mine.url;
|
|
sha256 = products.ruby-mine.sha256;
|
|
};
|
|
wmClass = "jetbrains-rubymine";
|
|
update-channel = products.ruby-mine.update-channel;
|
|
};
|
|
|
|
rust-rover = buildRustRover rec {
|
|
pname = "rust-rover";
|
|
version = products.rust-rover.version;
|
|
buildNumber = products.rust-rover.build_number;
|
|
description = "Rust IDE";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.rust-rover.url;
|
|
sha256 = products.rust-rover.sha256;
|
|
};
|
|
wmClass = "jetbrains-rustrover";
|
|
update-channel = products.rust-rover.update-channel;
|
|
};
|
|
|
|
webstorm = buildWebStorm rec {
|
|
pname = "webstorm";
|
|
version = products.webstorm.version;
|
|
buildNumber = products.webstorm.build_number;
|
|
description = "Professional IDE for Web and JavaScript development";
|
|
license = lib.licenses.unfree;
|
|
src = fetchurl {
|
|
url = products.webstorm.url;
|
|
sha256 = products.webstorm.sha256;
|
|
};
|
|
wmClass = "jetbrains-webstorm";
|
|
update-channel = products.webstorm.update-channel;
|
|
};
|
|
|
|
plugins = callPackage ./plugins { };
|
|
|
|
}
|