Skip to content

Commit

Permalink
mdevctl: 1.2.0 -> 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
r-ryantm committed Jan 9, 2024
1 parent 1e4909f commit b9eee53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/os-specific/linux/mdevctl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

rustPlatform.buildRustPackage rec {
pname = "mdevctl";
version = "1.2.0";
version = "1.3.0";

src = fetchCrate {
inherit pname version;
hash = "sha256-0X/3DWNDPOgSNNTqcj44sd7DNGFt+uGBjkc876dSgU8=";
hash = "sha256-4K4NW3DOTtzZJ7Gg0mnRPr88YeqEjTtKX+C4P8i923E=";
};

cargoHash = "sha256-TmumQBWuH5fJOe2qzcDtEGbmCs2G9Gfl8mH7xifzRGc=";
cargoHash = "sha256-hCqNy32uPLsKfUJqiG2DRcXfqdvlp4bCutQmt+FieXc=";

nativeBuildInputs = [
docutils
Expand Down

1 comment on commit b9eee53

@jys1670
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like things are broken in 1.3:
Error: Required directory "/usr/lib/mdevctl/scripts.d/callouts" doesn't exist. This may indicate a packaging or installation
Because /etc localtion was deprecated (according to man pages):

/usr/lib/mdevctl/scripts.d/callouts/*

Scripts for pre/post/get call-out events. NOTE: these scripts were previously located at /etc/mdevctl.d/scripts.d/callouts/*, but that location is now deprecated.

Please sign in to comment.