Unverified Commit a3197bf9 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #334966 from sedlund/feat/rust-parallel

rust-parallel: init 1.18.1
parents 1eae685f 47c7db93
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -18601,6 +18601,12 @@
    githubId = 17243347;
    name = "Sebastian Sellmeier";
  };
  sedlund = {
    email = "scott+nixpkgs@teraton.com";
    github = "sedlund";
    githubId = 8109138;
    name = "Scott Edlund";
  };
  sefidel = {
    name = "sefidel";
    email = "contact@sefidel.net";
+42 −0
Original line number Diff line number Diff line
{
  bash,
  fetchFromGitHub,
  lib,
  rustPlatform,
}:

rustPlatform.buildRustPackage rec {
  pname = "rust-parallel";
  version = "1.18.1";

  src = fetchFromGitHub {
    owner = "aaronriekenberg";
    repo = "rust-parallel";
    rev = "v${version}";
    hash = "sha256-4f/JE8KWYDdLwx+bCSSbz0Cpfy/g3WIaRzqCvUix4t0=";
  };

  cargoHash = "sha256-bhwA2Acl10Rz5uRxJT+RagDZloeztM2eWJmkHV6Ib6c=";

  postPatch = ''
    substituteInPlace tests/dummy_shell.sh \
      --replace "/bin/bash" "${bash}/bin/bash"
  '';

  checkFlags = [
    "--skip=runs_echo_commands_dry_run"

    "--skip=runs_regex_command_with_dollar_signs"
    "--skip=runs_regex_from_command_line_args_nomatch_1"
    "--skip=runs_regex_from_input_file_badline_j1"
  ];

  meta = {
    description = "Rust shell tool to run commands in parallel with a similar interface to GNU parallel";
    homepage = "https://github.com/aaronriekenberg/rust-parallel";
    license = lib.licenses.mit;
    mainProgram = "rust-parallel";
    maintainers = with lib.maintainers; [ sedlund ];
    platforms = lib.platforms.linux;
  };
}