21 lines
303 B
Nix
21 lines
303 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=";
|
|
}
|