mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "artem";
|
|
version = "3.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "finefindus";
|
|
repo = "artem";
|
|
rev = "v${version}";
|
|
hash = "sha256-C3Co+hXstVN/WADIpzqr7f3muAgQL0Zbnz6VI1XNo4U=";
|
|
};
|
|
|
|
cargoHash = "sha256-QyFUxnq4BSULgpZxCu5+7TWfu6Gey0JFkOYSK+rL7l0=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
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 ];
|
|
mainProgram = "artem";
|
|
};
|
|
}
|