artem: init at 1.0.3

This commit is contained in:
Gabriel Arazas 2022-05-14 22:57:08 +08:00
parent fbde972a0d
commit 4e7f6f1a00
2 changed files with 22 additions and 0 deletions

21
pkgs/artem.nix Normal file
View File

@ -0,0 +1,21 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "artem";
version = "1.0.3";
src = fetchFromGitHub {
owner = "FineFindus";
repo = pname;
rev = "v${version}";
sha256 = "sha256-1unGpJA5SXVj+uZAXwiQyY9dYo3UkiX0MG+YYPbA8ac=";
};
cargoSha256 = "sha256-PBJU78j7YlNi0YQ9+LJafdHiCXXKsP43wHTIUZG3Zgs=";
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,6 +6,7 @@ let
packages = self: packages = self:
let callPackage = newScope self; let callPackage = newScope self;
in { in {
artem = callPackage ./artem.nix { };
auto-editor = callPackage ./auto-editor.nix { }; auto-editor = callPackage ./auto-editor.nix { };
blueprint-compiler = callPackage ./blueprint-compiler.nix { }; blueprint-compiler = callPackage ./blueprint-compiler.nix { };
butler = callPackage ./butler.nix { }; butler = callPackage ./butler.nix { };