Unverified Commit e2e54a67 authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

presenterm: 0.16.0 -> 0.16.1 (#492704)

parents 0139d82b 340154e3
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -14,13 +14,13 @@ let
in
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "presenterm";
  version = "0.16.0";
  version = "0.16.1";

  src = fetchFromGitHub {
    owner = "mfontanini";
    repo = "presenterm";
    tag = "v${finalAttrs.version}";
    hash = "sha256-wQP3tLa6+GZAhNkAaIrbpIMBnQD7UoH6O5N/wDKtfrQ=";
    hash = "sha256-mIJktrgBweaaLD2YaRcs0vP5hKRy/kMN/HEnwO323DA=";
  };

  nativeBuildInputs =
@@ -35,7 +35,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
    libsixel
  ];

  cargoHash = "sha256-mDbzZZDsGCpbOKJ9/lX23VgSH0LGzHvYo2nxnRay15A=";
  cargoHash = "sha256-OlZXf8Wg32mXGDGbavLVf1ELoqqSmc8z9DNpvGOfAJ8=";

  env = lib.optionalAttrs (isDarwin && isx86_64) {
    NIX_CFLAGS_LINK = "-fuse-ld=lld";
@@ -66,7 +66,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
    changelog = "https://github.com/mfontanini/presenterm/releases/tag/v${finalAttrs.version}";
    homepage = "https://github.com/mfontanini/presenterm";
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ mikaelfangel ];
    maintainers = with lib.maintainers; [
      GaetanLepage
      mikaelfangel
    ];
    mainProgram = "presenterm";
  };
})