Unverified Commit 1f28ac4d authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

cargo-embassy: init at 0.3.4 (#386666)

parents 7e31e6cf 5e3c7b0b
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{
  lib,
  rustPlatform,
  fetchFromGitHub,
  pkg-config,
  udev,
}:
rustPlatform.buildRustPackage {
  pname = "cargo-embassy";
  version = "0.3.4";

  src = fetchFromGitHub {
    owner = "adinack";
    repo = "cargo-embassy";
    # 0.3.4 with cargo.lock. Switch back
    # to tag = when next version released
    rev = "989a406387ebda89acd943c57e207d78eba600c1";
    hash = "sha256-C8eFQFHYIj2P+zPOKLVBNX97UDVbbcdjbqh5n53ktCU=";
  };

  buildInputs = [
    udev
  ];

  nativeBuildInputs = [
    pkg-config
  ];

  cargoHash = "sha256-iLGoc6CKZGlq9bw1sL0jCVm9lGa0i/BXiseU1USGjfQ=";
  useFetchCargoVendor = true;

  meta = {
    description = "Command line tool for creating Embassy projects";
    homepage = "https://github.com/adinack/cargo-embassy";
    license = lib.licenses.gpl3Only;
    maintainers = [ lib.maintainers.samw ];
    mainProgram = "cargo-embassy";
  };
}