mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-24 18:19:11 +00:00
artem: remove package
It is also available in nixpkgs.
This commit is contained in:
parent
20607cfd9f
commit
697725c96a
@ -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;
|
|
||||||
};
|
|
||||||
}
|
|
@ -6,7 +6,6 @@ let
|
|||||||
packages = self:
|
packages = self:
|
||||||
let callPackage = newScope self;
|
let callPackage = newScope self;
|
||||||
in rec {
|
in rec {
|
||||||
artem = callPackage ./artem.nix { };
|
|
||||||
auto-editor = callPackage ./auto-editor.nix { };
|
auto-editor = callPackage ./auto-editor.nix { };
|
||||||
awesome-cli = callPackage ./awesome-cli { };
|
awesome-cli = callPackage ./awesome-cli { };
|
||||||
decker = callPackage ./decker { };
|
decker = callPackage ./decker { };
|
||||||
|
Loading…
Reference in New Issue
Block a user