mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
artem: init at 1.0.3
This commit is contained in:
parent
fbde972a0d
commit
4e7f6f1a00
21
pkgs/artem.nix
Normal file
21
pkgs/artem.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -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 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user