Unverified Commit 8515e2d4 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #215602 from figsoda/codevis

codevis: init at 0.5.1
parents 3f99472b 44ffdc99
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, oniguruma
}:

rustPlatform.buildRustPackage rec {
  pname = "codevis";
  version = "0.5.1";

  src = fetchFromGitHub {
    owner = "sloganking";
    repo = "codevis";
    rev = "v${version}";
    hash = "sha256-dkzBLDZK0BJ069mlkXMGtuDodZr9sxFmpEXjp5Nf0Qk=";
  };

  cargoHash = "sha256-/2sBd2RAOjGTgXMocuKea1qhkXj81vM8PlRhYsJKx5g=";

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = [
    oniguruma
  ];

  RUSTONIG_SYSTEM_LIBONIG = true;

  meta = with lib; {
    description = "A tool to take all source code in a folder and render them to one image";
    homepage = "https://github.com/sloganking/codevis";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -6271,6 +6271,8 @@ with pkgs;
  codebraid = callPackage ../tools/misc/codebraid { };
  codevis = callPackage ../tools/misc/codevis { };
  compass = callPackage ../development/tools/compass { };
  cone = callPackage ../development/compilers/cone {