about summary refs log tree commit diff stats
path: root/pkgs/by-name/ge/generate_moz_extension/package.nix
blob: abd95c772caa3e5c6b710d9790ca03043ac9f14c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  rustPlatform,
  openssl,
  pkg-config,
}:
rustPlatform.buildRustPackage {
  pname = "generate_firefox_extensions";
  version = "0.1.0";

  src = ./.;
  cargoLock = {
    lockFile = ./Cargo.lock;
  };
  buildInputs = [
    openssl # needed for openssl-sys crate
  ];
  nativeBuildInputs = [
    pkg-config # needed for openssl dependency
  ];
}