|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
{ nixpkgs ? import <nixpkgs> {}
|
|
|
|
|
, stdenv ? nixpkgs.stdenv
|
|
|
|
|
, astdenv ? nixpkgs.stdenv
|
|
|
|
|
#, callPackage
|
|
|
|
|
#, fetchurl
|
|
|
|
|
#, makeDesktopItem
|
|
|
|
@ -18,7 +18,7 @@
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
with nixpkgs;
|
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
|
assert astdenv.isLinux;
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
mkIdeaProduct = callPackage ./common.nix { };
|
|
|
|
@ -27,7 +27,7 @@ let
|
|
|
|
|
(mkIdeaProduct rec {
|
|
|
|
|
inherit name version src wmClass jdk;
|
|
|
|
|
product = "IDEA";
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
meta = with astdenv.lib; {
|
|
|
|
|
homepage = "https://www.jetbrains.com/idea/";
|
|
|
|
|
inherit description license;
|
|
|
|
|
longDescription = ''
|
|
|
|
@ -35,7 +35,7 @@ let
|
|
|
|
|
environment for building Google Android apps Integration
|
|
|
|
|
with JUnit, TestNG, popular SCMs, Ant & Maven.
|
|
|
|
|
'';
|
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
|
maintainers = with maintainers; [ jpierre03 ];
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
@ -46,7 +46,7 @@ in
|
|
|
|
|
name = "idea-ultimate-${version}";
|
|
|
|
|
version = "14.1.7";
|
|
|
|
|
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
|
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
|
license = astdenv.lib.licenses.bsd3;
|
|
|
|
|
#license = stdenv.lib.licenses.unfree;
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
|
|
|
|
|