summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-09-16 20:36:52 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-09-18 22:57:03 +0200
commitf6148e10a30fdb0692014417ca51e6dc030f310d (patch)
treef4d3362303ad70f8c254b503e12f4e58a18a9c6b /pkgs/development/web
parentaa67e95bb5845323ed1b4b9c516b6efb762fc243 (diff)
downloadnixpkgs-f6148e10a30fdb0692014417ca51e6dc030f310d.tar
nixpkgs-f6148e10a30fdb0692014417ca51e6dc030f310d.tar.gz
nixpkgs-f6148e10a30fdb0692014417ca51e6dc030f310d.tar.bz2
nixpkgs-f6148e10a30fdb0692014417ca51e6dc030f310d.tar.lz
nixpkgs-f6148e10a30fdb0692014417ca51e6dc030f310d.tar.xz
nixpkgs-f6148e10a30fdb0692014417ca51e6dc030f310d.tar.zst
nixpkgs-f6148e10a30fdb0692014417ca51e6dc030f310d.zip
grails: new package
Grails is an Open Source, full stack, web application framework for the
JVM. It takes advantage of the Groovy programming language and
convention over configuration to provide a productive and stream-lined
development experience.

http://grails.org/
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/grails/default.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/development/web/grails/default.nix b/pkgs/development/web/grails/default.nix
new file mode 100644
index 00000000000..b1ff7064003
--- /dev/null
+++ b/pkgs/development/web/grails/default.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchurl, unzip
+# If jdkPath is null, require JAVA_HOME in runtime environment, else store
+# JAVA_HOME=${jdkPath} into grails.
+, jdkPath ? null
+, coreutils, ncurses, gnused, gnugrep  # for purity
+}:
+
+let
+  binpath = stdenv.lib.makeSearchPath "bin"
+    ([ coreutils ncurses gnused gnugrep ]
+    ++ stdenv.lib.optional (jdkPath != null) jdkPath);
+in
+stdenv.mkDerivation rec {
+  name = "grails-2.4.3";
+
+  src = fetchurl {
+    url = "http://dist.springframework.org.s3.amazonaws.com/release/GRAILS/${name}.zip";
+    sha256 = "0lqkv0hsiiqa36pfnq5wv7s7nsp9xadmh1ri039bn0llpfck4742";
+  };
+
+  buildInputs = [ unzip ];
+
+  buildPhase = "true";
+
+  installPhase = ''
+    mkdir -p "$out"
+    cp -vr . "$out"
+    # Remove (for now) uneeded Windows .bat files
+    rm -f "$out"/bin/*.bat
+    # Improve purity
+    sed -i -e '2iPATH=${binpath}:\$PATH' "$out"/bin/grails
+  '' + stdenv.lib.optionalString (jdkPath != null) ''
+    # Inject JDK path into grails
+    sed -i -e '2iJAVA_HOME=${jdkPath}' "$out"/bin/grails
+  '';
+
+  preferLocalBuild = true;
+
+  meta = with stdenv.lib; {
+    description = "Full stack, web application framework for the JVM";
+    longDescription = ''
+      Grails is an Open Source, full stack, web application framework for the
+      JVM. It takes advantage of the Groovy programming language and convention
+      over configuration to provide a productive and stream-lined development
+      experience.
+    '';
+    homepage = http://grails.org/;
+    license = licenses.asl20;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.bjornfor ];
+  };
+}