Unverified Commit 81d4b4ce authored by github-actions[bot]'s avatar github-actions[bot] Committed by GitHub
Browse files

Merge master into staging-next

parents 835ae0f7 21b0706d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -20,17 +20,17 @@

buildGoModule rec {
  pname = "aaaaxy";
  version = "1.5.208";
  version = "1.5.220";

  src = fetchFromGitHub {
    owner = "divVerent";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-VfF8bQP7pFaTezOJpda4N9KbCHr5ST/wCvdNRiojio0=";
    hash = "sha256-XNLX5LDbL29Ko0zstgo+O5V0oe37dSChk8iJeVrYlLA=";
    fetchSubmodules = true;
  };

  vendorHash = "sha256-PBwI3S8ZvmVD57/ICALe+HvgtbPQpJKNPfkWo+uUeSo=";
  vendorHash = "sha256-tDQKU/1fKDPCrUHfFi79u4d2XwOqjvTuIlsUAB74e4c=";

  buildInputs = [
    alsa-lib
+2 −2
Original line number Diff line number Diff line
@@ -23,13 +23,13 @@
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "aquamarine";
  version = "0.4.4";
  version = "0.5.0";

  src = fetchFromGitHub {
    owner = "hyprwm";
    repo = "aquamarine";
    rev = "v${finalAttrs.version}";
    hash = "sha256-6DQM7jT2CzfxYceyrtcBQSL9BOEGfuin8GAyMjCpAzc=";
    hash = "sha256-1Dxryiw8u2ejntxrrv3sMtIE8WHKxmlN4KeH+uMGbmc=";
  };

  nativeBuildInputs = [
+3 −3
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@

rustPlatform.buildRustPackage rec {
  pname = "ast-grep";
  version = "0.28.1";
  version = "0.30.0";

  src = fetchFromGitHub {
    owner = "ast-grep";
    repo = "ast-grep";
    rev = version;
    hash = "sha256-nMOj/oMJsBB0bI2RzxEytvEr0v+VmGIMY0uiK7ALEHM=";
    hash = "sha256-Fk46F1EBWSVFAUUDAtXcwq9iCSATW1CV/ul3NEa1YqA=";
  };

  cargoHash = "sha256-alOLdkgyrJQNg/JACredGmfs/dKxnOm9cSahvVBHzTM=";
  cargoHash = "sha256-5yJ248BSp9w/r1chQqIucxzfvFGy+jumSquF9gVmSUM=";

  nativeBuildInputs = [ installShellFiles ];

+59 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchzip,
  dotnet-runtime,
  zlib,
  runtimeShell,
}:

stdenv.mkDerivation rec {
  pname = "avdump3";
  version = "8293_stable";

  src = fetchzip {
    url = "https://cdn.anidb.net/client/avdump3/avdump3_8293_stable.zip";
    hash = "sha256-H9Sn3I4S9CmymKIMHVagDy+7svHs285S3EJgYQo+ks0=";
    stripRoot = false;
  };

  installPhase = ''
    runHook preInstall
    mkdir -p $out/share/avdump3 $out/bin
    mv * $out/share/avdump3
    cat > $out/bin/avdump3 <<EOF
    #!${runtimeShell}
    export LD_LIBRARY_PATH="${lib.makeLibraryPath [ zlib ]}:\$LD_LIBRARY_PATH"
    exec ${dotnet-runtime}/bin/dotnet $out/share/avdump3/AVDump3CL.dll "\$@"
    EOF
    chmod +x $out/bin/avdump3
    runHook postInstall
  '';

  dontPatchELF = true;

  meta = {
    mainProgram = "avdump3";
    description = "Tool for extracting audio/video metadata from media files and uploading it to AniDB";
    longDescription = ''
      AVDump is a tool to extract meta information from media files while at the
      same time calculating multiple hashes. Based on that information reports
      can be generated in multiple forms. Of particular interest is the ability
      to send those reports back to AniDB and thereby quickly filling in missing
      metadata for new files.
    '';
    homepage = "https://wiki.anidb.net/Avdump3";
    sourceProvenance = with lib.sourceTypes; [
      binaryNativeCode
      binaryBytecode
    ];
    # partial source code available under MIT license at https://github.com/DvdKhl/AVDump3
    license = with lib.licenses; [
      mit
      unfree
    ];
    maintainers = with lib.maintainers; [ kini ];
    # NOTE: aarch64-linux may also work but hasn't been tested; co-maintainers welcome.
    platforms = [ "x86_64-linux" ];
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -10,16 +10,16 @@

buildNpmPackage rec {
  pname = "azurite";
  version = "3.31.0";
  version = "3.33.0";

  src = fetchFromGitHub {
    owner = "Azure";
    repo = "Azurite";
    rev = "v${version}";
    hash = "sha256-WT1eprN6SBnsfITCopybEHCuxrHvKEhdmVs7xL3cUi0=";
    hash = "sha256-aH9FAT49y4k87lzerQdgLqi+ZlucORQX4w1NBFtEfMw=";
  };

  npmDepsHash = "sha256-+ptjsz2MDIB/aqu4UxkBLCcehtamFdmswNUsHs23LuE=";
  npmDepsHash = "sha256-jfa04iWz0aOiFD1YkXn5YEXqQcrY+rIDbVmmUaA5sYc=";

  nativeBuildInputs = [ pkg-config python3 ];
  buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
Loading