mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 11:44:02 +00:00
![stuebinm](/assets/img/avatar_default.png)
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
27 lines
647 B
Nix
27 lines
647 B
Nix
{ stdenv, lib, fetchFromGitHub, elixir, erlang }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mix2nix";
|
|
version = "0.1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ydlr";
|
|
repo = "mix2nix";
|
|
rev = version;
|
|
hash = "sha256-Wh3KFp1gNDOKOG/DZdftmgy/M+67ZGfdj6W3ETQpX/8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ elixir ];
|
|
buildInputs = [ 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.beam.members;
|
|
};
|
|
}
|