From 697725c96a785efb7808d3eb679320318611b6b7 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 22 Apr 2023 22:01:13 +0800 Subject: [PATCH] artem: remove package It is also available in nixpkgs. --- pkgs/artem.nix | 32 -------------------------------- pkgs/default.nix | 1 - 2 files changed, 33 deletions(-) delete mode 100644 pkgs/artem.nix diff --git a/pkgs/artem.nix b/pkgs/artem.nix deleted file mode 100644 index 25d840b3..00000000 --- a/pkgs/artem.nix +++ /dev/null @@ -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; - }; -} diff --git a/pkgs/default.nix b/pkgs/default.nix index d569d809..4400cab5 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -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 { };