Unverified Commit a3054b3c authored by Fabián Heredia Montiel's avatar Fabián Heredia Montiel Committed by GitHub
Browse files

faustfmt: init at unstable-2025-10-29 (#456764)

parents 9306a229 b59b18e0
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{
  lib,
  rustPlatform,
  fetchFromGitHub,
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "faustfmt";
  version = "0-unstable-2025-10-29";

  src = fetchFromGitHub {
    owner = "grame-cncm";
    repo = "faustfmt";
    rev = "93a897a08f034b9a73397b0052a3391fcdb28fe9";
    hash = "sha256-QZvzsWSrs5yXw7R89nz+hf/phdd6qBzp4CpjcnxbZEI=";
  };

  cargoHash = "sha256-uwBCy52juE3YcJoackhvrHjrvcoahbnDFg74p/X3ce8=";

  meta = {
    description = "Formatter for the Faust programming language, using Topiary";
    homepage = "https://github.com/grame-cncm/faustfmt";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ magnetophon ];
    mainProgram = "faustfmt";
    platforms = lib.platforms.all;
  };
})