20 lines
299 B
Nix
20 lines
299 B
Nix
{ pkgs
|
|
, rustPlatform
|
|
, ...
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "afvalcalendar";
|
|
version = "0.1.0";
|
|
src = ./.;
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = with pkgs; [
|
|
openssl
|
|
];
|
|
|
|
cargoHash = "sha256-JXx6aUKdKbUTBCwlBw5i1hZy8ofCfSrhLCwFzqdA8cI=";
|
|
}
|