Commit 6dfd5934 authored by John Titor's avatar John Titor Committed by Masum Reza
Browse files

lact: switch to finalAttrs, add johnrtitor as maintainer

parent 1fc7a63f
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -17,14 +17,14 @@
  autoAddDriverRunpath,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "lact";
  version = "0.7.3";

  src = fetchFromGitHub {
    owner = "ilya-zlobintsev";
    repo = "LACT";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-R8VEAk+CzJCxPzJohsbL/XXH1GMzGI2W92sVJ2evqXs=";
  };

@@ -118,8 +118,9 @@ rustPlatform.buildRustPackage rec {
      figsoda
      atemu
      cything
      johnrtitor
    ];
    platforms = lib.platforms.linux;
    mainProgram = "lact";
  };
}
})