viu: init at 0.1

This commit is contained in:
Milan Pässler 2019-05-04 02:35:55 +02:00
parent bf0fa371b9
commit b67e9f3958
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "viu";
version = "0.1";
src = fetchFromGitHub {
owner = "atanunq";
repo = "viu";
rev = "v${version}";
sha256 = "1j2sr8mhnbyzm168spzr4mk8gkjlfqh993b80sf2zv2sy83p8gfv";
};
cargoSha256 = "14pf2xvkk9qqq9qj5agxmfl3npgy6my961yfzv7p977712kdakh3";
meta = with lib; {
description = "A command-line application to view images from the terminal written in Rust";
homepage = "https://github.com/atanunq/viu";
license = licenses.mit;
maintainers = with maintainers; [ petabyteboy ];
platforms = platforms.all;
};
}

View file

@ -6303,6 +6303,8 @@ in
vit = callPackage ../applications/misc/vit { };
viu = callPackage ../tools/graphics/viu { };
vnc2flv = callPackage ../tools/video/vnc2flv {};
vncrec = callPackage ../tools/video/vncrec { };