tlaternet-server/pkgs/afvalcalendar/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
285 B
Nix
Raw Normal View History

2024-08-18 19:41:20 +01:00
{ pkgs, rustPlatform, ... }:
rustPlatform.buildRustPackage {
pname = "afvalcalendar";
version = "0.1.0";
src = ./.;
2024-08-18 19:41:20 +01:00
nativeBuildInputs = with pkgs; [ pkg-config ];
2024-08-18 19:41:20 +01:00
buildInputs = with pkgs; [ openssl ];
cargoHash = "sha256-JXx6aUKdKbUTBCwlBw5i1hZy8ofCfSrhLCwFzqdA8cI=";
}