Commit 3b9ec25c authored by John Chadwick's avatar John Chadwick
Browse files

ruffle: refactor

parent 2b0894a9
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -20,13 +20,16 @@
  libxkbcommon,
}:

rustPlatform.buildRustPackage rec {
  pname = "ruffle";
let
  version = "nightly-2024-03-25";
in
rustPlatform.buildRustPackage {
  pname = "ruffle";
  inherit version;

  src = fetchFromGitHub {
    owner = "ruffle-rs";
    repo = pname;
    repo = "ruffle";
    rev = version;
    hash = "sha256-3G5xSGdMl4ISQmb2BVGdKz1cXU5Mnl+VkVYpJ6P12og=";
  };