Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
685 B
Nix
33 lines
685 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
beamPackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mix2nix";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ydlr";
|
|
repo = "mix2nix";
|
|
rev = version;
|
|
hash = "sha256-hD4lpP8GPkNXuMMDOOTEmy+rOwOSCxQwR0Mjq8i4oDM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ beamPackages.elixir ];
|
|
buildInputs = [ beamPackages.erlang ];
|
|
|
|
buildPhase = "mix escript.build";
|
|
installPhase = "install -Dt $out/bin mix2nix";
|
|
|
|
meta = with lib; {
|
|
description = "Generate nix expressions from mix.lock file";
|
|
mainProgram = "mix2nix";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ydlr ];
|
|
teams = [ teams.beam ];
|
|
};
|
|
}
|