mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
23 lines
567 B
Nix
23 lines
567 B
Nix
{ 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;
|
|
};
|
|
}
|