{ lib , rustPlatform , fetchFromGitHub , installShellFiles , pkg-config , openssl }: rustPlatform.buildRustPackage rec { pname = "artem"; version = "1.2.1"; src = fetchFromGitHub { owner = "finefindus"; repo = pname; rev = "v${version}"; sha256 = "sha256-T652cdKVZqoZ+EwXmTSs9x+ftjvWOELjy37trCP7V+0="; }; cargoSha256 = "sha256-2LXpvAbkpk2sJHZJvytwLYksZK4coVYyKvuNRiDK0Gg="; nativeBuildInputs = [ installShellFiles pkg-config ]; buildInputs = [ openssl ]; OPENSSL_NO_VENDOR = 1; checkFlags = [ # require internet access "--skip=arguments::input::url_input" "--skip=full_file_compare_url" # flaky "--skip=full_file_compare_html" ]; postInstall = '' installManPage $releaseDir/build/artem-*/out/artem.1 installShellCompletion $releaseDir/build/artem-*/out/artem.{bash,fish} \ --zsh $releaseDir/build/artem-*/out/_artem ''; meta = with lib; { description = "A small CLI program to convert images to ASCII art"; homepage = "https://github.com/finefindus/artem"; changelog = "https://github.com/finefindus/artem/blob/v${version}/CHANGELOG.md"; license = licenses.mpl20; maintainers = with maintainers; [ figsoda ]; }; }