2018-02-15 23:29:38 +00:00
|
|
|
{ stdenv, fetchurl, jdk, rlwrap, makeWrapper }:
|
2014-01-03 13:48:21 +00:00
|
|
|
|
2018-02-18 19:38:50 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2012-05-01 11:39:58 +00:00
|
|
|
name = "clojure-${version}";
|
2018-07-31 09:54:39 +00:00
|
|
|
version = "1.9.0.391";
|
2011-09-01 13:38:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-12-15 05:23:46 +00:00
|
|
|
url = "https://download.clojure.org/install/clojure-tools-${version}.tar.gz";
|
2018-07-31 09:54:39 +00:00
|
|
|
sha256 = "1720nbp891mhdjp37z1ns7rg8yapk3a7h1a1rkzhx7abngpwwjcz";
|
2011-09-01 13:38:59 +00:00
|
|
|
};
|
|
|
|
|
2018-02-15 23:29:38 +00:00
|
|
|
buildInputs = [ makeWrapper ];
|
2011-09-01 13:38:59 +00:00
|
|
|
|
2018-02-18 19:38:50 +00:00
|
|
|
outputs = [ "out" "prefix" ];
|
|
|
|
|
2018-07-17 02:25:11 +00:00
|
|
|
installPhase = let
|
|
|
|
binPath = stdenv.lib.makeBinPath [ rlwrap jdk ];
|
|
|
|
in ''
|
2018-02-18 19:38:50 +00:00
|
|
|
mkdir -p $prefix/libexec
|
|
|
|
cp clojure-tools-${version}.jar $prefix/libexec
|
|
|
|
cp {,example-}deps.edn $prefix
|
|
|
|
|
|
|
|
substituteInPlace clojure --replace PREFIX $prefix
|
|
|
|
|
|
|
|
install -Dt $out/bin clj clojure
|
2018-07-17 02:25:11 +00:00
|
|
|
wrapProgram $out/bin/clj --prefix PATH : ${binPath}
|
|
|
|
wrapProgram $out/bin/clojure --prefix PATH : ${binPath}
|
2014-01-03 13:48:21 +00:00
|
|
|
'';
|
2011-09-01 13:38:59 +00:00
|
|
|
|
2017-09-26 12:38:26 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-01-03 13:48:21 +00:00
|
|
|
description = "A Lisp dialect for the JVM";
|
2017-08-02 21:50:51 +00:00
|
|
|
homepage = https://clojure.org/;
|
2017-09-26 12:38:26 +00:00
|
|
|
license = licenses.epl10;
|
2011-09-01 13:38:59 +00:00
|
|
|
longDescription = ''
|
|
|
|
Clojure is a dynamic programming language that targets the Java
|
|
|
|
Virtual Machine. It is designed to be a general-purpose language,
|
|
|
|
combining the approachability and interactive development of a
|
|
|
|
scripting language with an efficient and robust infrastructure for
|
|
|
|
multithreaded programming. Clojure is a compiled language - it
|
|
|
|
compiles directly to JVM bytecode, yet remains completely
|
|
|
|
dynamic. Every feature supported by Clojure is supported at
|
|
|
|
runtime. Clojure provides easy access to the Java frameworks, with
|
|
|
|
optional type hints and type inference, to ensure that calls to Java
|
|
|
|
can avoid reflection.
|
|
|
|
|
|
|
|
Clojure is a dialect of Lisp, and shares with Lisp the code-as-data
|
|
|
|
philosophy and a powerful macro system. Clojure is predominantly a
|
|
|
|
functional programming language, and features a rich set of immutable,
|
|
|
|
persistent data structures. When mutable state is needed, Clojure
|
|
|
|
offers a software transactional memory system and reactive Agent
|
|
|
|
system that ensure clean, correct, multithreaded designs.
|
|
|
|
'';
|
2017-09-26 12:38:26 +00:00
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
|
|
|
platforms = platforms.unix;
|
2011-09-01 13:38:59 +00:00
|
|
|
};
|
|
|
|
}
|