afvalcalendar: Host enschede afvalcalendar

This commit is contained in:
Tristan Daniël Maat 2024-04-15 02:58:09 +02:00
parent 0d43b5177d
commit 8f178f776e
Signed by: tlater
GPG key ID: 49670FD774E43268
10 changed files with 1651 additions and 0 deletions
pkgs/afvalcalendar

View file

@ -0,0 +1,20 @@
{
pkgs,
rustPlatform,
...
}:
rustPlatform.buildRustPackage {
pname = "afvalcalendar";
version = "0.1.0";
src = ./.;
nativeBuildInputs = with pkgs; [
pkg-config
];
buildInputs = with pkgs; [
openssl
];
cargoHash = "sha256-JXx6aUKdKbUTBCwlBw5i1hZy8ofCfSrhLCwFzqdA8cI=";
}