fa54eeea5c
Co-authored-by: Yt <happysalada@tuta.io>
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ lib, beamPackages, makeWrapper, rebar3, elixir, erlang, fetchFromGitHub, nixosTests }:
|
|
beamPackages.mixRelease rec {
|
|
pname = "livebook";
|
|
version = "0.11.3";
|
|
|
|
inherit elixir;
|
|
|
|
buildInputs = [ erlang ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "livebook-dev";
|
|
repo = "livebook";
|
|
rev = "v${version}";
|
|
hash = "sha256-zUJM6OcXhHW8e09h2EKnfI9voF2k4AZ75ulQErNqjD0=";
|
|
};
|
|
|
|
mixFodDeps = beamPackages.fetchMixDeps {
|
|
pname = "mix-deps-${pname}";
|
|
inherit src version;
|
|
hash = "sha256-7GvtxEIEbC0QZEYIoARaX9uIsf/CoGE6dX60/mCvkYI=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mix escript.build
|
|
mkdir -p $out/bin
|
|
mv ./livebook $out/bin
|
|
|
|
wrapProgram $out/bin/livebook \
|
|
--prefix PATH : ${lib.makeBinPath [ elixir ]} \
|
|
--set MIX_REBAR3 ${rebar3}/bin/rebar3
|
|
'';
|
|
|
|
passthru.tests = {
|
|
livebook-service = nixosTests.livebook-service;
|
|
};
|
|
|
|
meta = with lib; {
|
|
license = licenses.asl20;
|
|
homepage = "https://livebook.dev/";
|
|
description = "Automate code & data workflows with interactive Elixir notebooks";
|
|
maintainers = with maintainers; [ munksgaard ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|