rustical: init at 0.4.11 (#422997)

authored by Guillaume Girol and committed by GitHub f51c8eb8 fcc0a2e0

+35
+35
pkgs/by-name/ru/rustical/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + pkg-config, 6 + openssl, 7 + }: 8 + 9 + rustPlatform.buildRustPackage (finalAttrs: { 10 + pname = "rustical"; 11 + version = "0.4.11"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "lennart-k"; 15 + repo = "rustical"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-QWuJKEc6hBA2rdbaqdhrah+WyRwVd91Y8/BIOaKlW28="; 18 + }; 19 + 20 + cargoHash = "sha256-dQF+6my+TxZ6niFO5OnLXcPt0LGEymaXE9NqZWU5HJk="; 21 + 22 + nativeBuildInputs = [ pkg-config ]; 23 + buildInputs = [ openssl ]; 24 + 25 + env.OPENSSL_NO_VENDOR = true; 26 + 27 + meta = { 28 + description = "Yet another calendar server aiming to be simple, fast and passwordless"; 29 + homepage = "https://github.com/lennart-k/rustical"; 30 + changelog = "https://github.com/lennart-k/rustical/releases/tag/v${finalAttrs.version}"; 31 + license = lib.licenses.agpl3Plus; 32 + maintainers = with lib.maintainers; [ PopeRigby ]; 33 + mainProgram = "rustical"; 34 + }; 35 + })