Skip to content

Commit

Permalink
Merge pull request #194225 from figsoda/artem
Browse files Browse the repository at this point in the history
artem: init at 1.1.5
  • Loading branch information
figsoda authored Oct 4, 2022
2 parents 8516327 + 66044f7 commit 898dd0e
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
50 changes: 50 additions & 0 deletions pkgs/applications/graphics/artem/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{ lib
, rustPlatform
, fetchFromGitHub
, installShellFiles
, pkg-config
, openssl
}:

rustPlatform.buildRustPackage rec {
pname = "artem";
version = "1.1.5";

src = fetchFromGitHub {
owner = "finefindus";
repo = pname;
rev = "v${version}";
sha256 = "1jax39gizlcbqnkjckxwm5h0wdk5dk8dasaj9wxv7yidbcbgj4zh";
};

cargoSha256 = "sha256-n2NOWrgcMVHpNCHL7r8+Kl1e01XYadaNM7UdE8fQo1U=";

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26803,6 +26803,8 @@ with pkgs;

arkade = callPackage ../applications/networking/cluster/arkade { };

artem = callPackage ../applications/graphics/artem { };

asuka = callPackage ../applications/networking/browsers/asuka {
inherit (darwin.apple_sdk.frameworks) Security;
};
Expand Down

0 comments on commit 898dd0e

Please sign in to comment.