13 lines
285 B
Nix
13 lines
285 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=";
|
|
}
|