Commit 764fe4dd authored by Kiara Grouwstra's avatar Kiara Grouwstra Committed by Masum Reza
Browse files

wallust: 3.2.0 -> 3.3.0

parent f56e94b1
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
@@ -7,23 +7,20 @@
  makeWrapper,
  installShellFiles,
}:
let
  version = "3.2.0";
in
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "wallust";
  inherit version;
  version = "3.3.0";

  src = fetchFromGitea {
    domain = "codeberg.org";
    owner = "explosion-mental";
    repo = "wallust";
    rev = version;
    hash = "sha256-71vLHuzLcNTvwE7j6iIQZJWD18IQnA0OwF/cOAZCLL8=";
    rev = finalAttrs.version;
    hash = "sha256-n3FXPlm8nructXh+Wc7BgJvxas6OFHEPbTe2QWjEpsg=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-TxlGzfupx9661T8nGvSxurz9cxc9C3udOnoU3PXVCdQ=";
  cargoHash = "sha256-LIHSnRPrx4gHZkpKEEZ1Um609i3vv0JGXLpbiSD08P4=";

  nativeBuildInputs = [
    makeWrapper
@@ -53,7 +50,7 @@ rustPlatform.buildRustPackage {
      onemoresuza
      iynaix
    ];
    downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${version}";
    downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${finalAttrs.version}";
    mainProgram = "wallust";
  };
}
})