{ pkgs ? import <nixpkgs> {} }: with pkgs;

rustPlatform.buildRustPackage rec {
  buildInputs = [ pkg-config openssl ];
  pname = "deps-check";
  # this hash is not the same on nix 2.2 and nix 2.3
  # the hash below is for nix 2.3
  cargoSha256 = "14l34gb0b36jalbd0m7w7a772fdaihnrvpyx9fv8xf1i983j3dx1";
  version = "0.2.2";
  src = ./.;
}