Unverified Commit 3cf63388 authored by Niklas Hambüchen's avatar Niklas Hambüchen Committed by GitHub
Browse files

Merge pull request #328881 from fpletz/pkgs/tracexec-0.5.1

tracexec: 0.4.0 -> 0.5.1
parents 1a2eb124 94f50c95
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
}:
let
  pname = "tracexec";
  version = "0.4.0";
  version = "0.5.1";
in
rustPlatform.buildRustPackage {
  inherit pname version;
@@ -17,14 +17,12 @@ rustPlatform.buildRustPackage {
    owner = "kxxt";
    repo = "tracexec";
    rev = "refs/tags/v${version}";
    hash = "sha256-Rhxg3VmdMSo1xlazvToIdvkBvuFUKTq82U3PnedGHHs=";
    hash = "sha256-RDOVKcGzSbej8THJGJgdLo/RPoD4Eks6USifXvd5PvY=";
  };

  cargoHash = "sha256-rioZfUJD4ZOpXGCWsBDQkYwW9XtTjFnGgMKl0mPF5XM=";
  cargoHash = "sha256-ELNksIEwGvcZ5grrmK4Nyvkyw2bkEdNQ2q4RSy4VqdM=";

  nativeBuildInputs = [
    cargo-about
  ];
  nativeBuildInputs = [ cargo-about ];

  # Remove RiscV64 specialisation when this is fixed:
  # * https://github.com/NixOS/nixpkgs/pull/310158#pullrequestreview-2046944158
@@ -62,7 +60,10 @@ rustPlatform.buildRustPackage {
    homepage = "https://github.com/kxxt/tracexec";
    license = lib.licenses.gpl2Plus;
    mainProgram = "tracexec";
    maintainers = with lib.maintainers; [ fpletz nh2 ];
    maintainers = with lib.maintainers; [
      fpletz
      nh2
    ];
    platforms = lib.platforms.linux;
  };
}