From 195759e2ecda99de61d4ccb9aa2782649d798b45 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Sun, 4 Sep 2016 12:58:38 +0200 Subject: [PATCH] idea.webstorm11: init at 11.0.4 --- pkgs/applications/editors/idea/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index ae58248640f..45a9c85c6b0 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -273,4 +273,16 @@ in }; wmClass = "jetbrains-webstorm"; }; + + webstorm11 = buildWebStorm rec { + name = "webstorm-${version}"; + version = "11.0.4"; + description = "Professional IDE for Web and JavaScript development"; + license = stdenv.lib.licenses.unfree; + src = fetchurl { + url = "https://download.jetbrains.com/webstorm/WebStorm-${version}.tar.gz"; + sha256 = "17agyqdyz6naxyx6p0y240ar93gja0ypw01nm2qmfzvh7ch03r24"; + }; + wmClass = "jetbrains-webstorm"; + }; }