lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 27 lines 679 B view raw
1{ stdenv, fetchurl, makeWrapper, jdk }: 2 3stdenv.mkDerivation rec { 4 version = "2.2.0"; 5 name = "boot-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/boot-clj/boot/releases/download/${version}/boot.sh"; 9 sha256 = "0czavpdhmpgp20vywf326ix1f94dky51mqiwyblrmrd33d89qz9f"; 10 }; 11 12 inherit jdk; 13 14 builder = ./builder.sh; 15 16 buildInputs = [ makeWrapper ]; 17 18 propagatedBuildInputs = [ jdk ]; 19 20 meta = { 21 description = "Build tooling for Clojure"; 22 homepage = http://boot-clj.com/; 23 license = stdenv.lib.licenses.epl10; 24 platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 25 maintainers = [ stdenv.lib.maintainers.ragge ]; 26 }; 27}