artem: remove package

It is also available in nixpkgs.
This commit is contained in:
Gabriel Arazas 2023-04-22 22:01:13 +08:00
parent 20607cfd9f
commit 697725c96a
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 33 deletions

View File

@ -1,32 +0,0 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform, perl, openssl, pkg-config }:
rustPlatform.buildRustPackage rec {
pname = "artem";
version = "1.1.5";
src = fetchFromGitHub {
owner = "FineFindus";
repo = pname;
rev = "v${version}";
sha256 = "sha256-8BP5Flst+rM7T1Jp1dBsZTYOYKm8TyanxYvRH18aXck=";
};
cargoSha256 = "sha256-n2NOWrgcMVHpNCHL7r8+Kl1e01XYadaNM7UdE8fQo1U=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ perl openssl ];
OPENSSL_NO_VENDOR = 1;
# These all requires network access.
checkFlags = [
"--skip url_input"
"--skip full_file_compare_url"
];
meta = with lib; {
homepage = "https://github.com/FineFindus/artem";
description =
"Command-line application for converting images to ASCII art.";
license = licenses.mpl20;
};
}

View File

@ -6,7 +6,6 @@ let
packages = self:
let callPackage = newScope self;
in rec {
artem = callPackage ./artem.nix { };
auto-editor = callPackage ./auto-editor.nix { };
awesome-cli = callPackage ./awesome-cli { };
decker = callPackage ./decker { };