Unverified Commit e05f8bda authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

uutils-coreutils: 0.0.29 -> 0.0.30 (#388442)

parents 067fc731 a52f61f8
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -12,21 +12,21 @@
  buildMulticallBinary ? true,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "uutils-coreutils";
  version = "0.0.29";
  version = "0.0.30";

  src = fetchFromGitHub {
    owner = "uutils";
    repo = "coreutils";
    tag = version;
    hash = "sha256-B6lz75uxROo7npiZNCdTt0NCxVvsaIgtWnuGOKevDQQ=";
    tag = finalAttrs.version;
    hash = "sha256-OZ9AsCJmQmn271OzEmqSZtt1OPn7zHTScQiiqvPhqB0=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit src;
    name = "uutils-coreutils-${version}";
    hash = "sha256-Z5A1Tyf7SbvIBVGG3YPxh4q/SLU+yNlVv2jBRNumNwM=";
    inherit (finalAttrs) src;
    name = "uutils-coreutils-${finalAttrs.version}";
    hash = "sha256-DsVLp2Y15k+KQI7S6A4hylOhJN016MEdEWx9VQIQEgQ=";
  };

  nativeBuildInputs = [
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
      prefix' = lib.optionalString (prefix != null) prefix;
    in
    "${placeholder "out"}/bin/${prefix'}ls";
  versionCheckProgramArg = [ "--version" ];
  versionCheckProgramArg = "--version";
  doInstallCheck = true;

  passthru = {
@@ -69,9 +69,9 @@ stdenv.mkDerivation rec {
      CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites.
    '';
    homepage = "https://github.com/uutils/coreutils";
    changelog = "https://github.com/uutils/coreutils/releases/tag/${version}";
    changelog = "https://github.com/uutils/coreutils/releases/tag/${finalAttrs.version}";
    maintainers = with lib.maintainers; [ siraben ];
    license = lib.licenses.mit;
    platforms = lib.platforms.unix;
  };
}
})