nixpkgs/pkgs/by-name/ar/artem/package.nix

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

54 lines
1.3 KiB
Nix
Raw Normal View History

2022-10-03 13:44:50 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, installShellFiles
, stdenv
, darwin
2022-10-03 13:44:50 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "artem";
2024-04-05 00:12:54 +00:00
version = "3.0.0";
2022-10-03 13:44:50 +00:00
src = fetchFromGitHub {
owner = "finefindus";
repo = "artem";
2022-10-03 13:44:50 +00:00
rev = "v${version}";
2024-04-05 00:12:54 +00:00
hash = "sha256-C3Co+hXstVN/WADIpzqr7f3muAgQL0Zbnz6VI1XNo4U=";
2022-10-03 13:44:50 +00:00
};
2024-04-05 00:12:54 +00:00
cargoHash = "sha256-QyFUxnq4BSULgpZxCu5+7TWfu6Gey0JFkOYSK+rL7l0=";
2022-10-03 13:44:50 +00:00
nativeBuildInputs = [
installShellFiles
];
2022-10-03 13:44:50 +00:00
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.Security
];
2022-10-03 13:44:50 +00:00
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 = "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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "artem";
2022-10-03 13:44:50 +00:00
};
}