waagent: 2.11.1.12 -> 2.12.0.2 (#357728)
[NixPkgs.git] / pkgs / by-name / bo / boot / package.nix
blobdd296aa83188eb5d98a3d22e5f39b4fce2032c9a
1 { lib, stdenv, fetchurl, jdk }:
3 stdenv.mkDerivation rec {
4   version = "2.7.2";
5   pname = "boot";
7   src = fetchurl {
8     url = "https://github.com/boot-clj/boot-bin/releases/download/${version}/boot.sh";
9     sha256 = "1hqp3xxmsj5vkym0l3blhlaq9g3w0lhjgmp37g6y3rr741znkk8c";
10   };
12   inherit jdk;
14   builder = ./builder.sh;
16   propagatedBuildInputs = [ jdk ];
18   meta = with lib; {
19     description = "Build tooling for Clojure";
20     mainProgram = "boot";
21     homepage = "https://boot-clj.github.io/";
22     license = licenses.epl10;
23     platforms = platforms.linux ++ platforms.darwin;
24     maintainers = with maintainers; [ ragge ];
25   };