nixpkgs/pkgs/tools/graphics/viu/default.nix

26 lines
670 B
Nix
Raw Normal View History

2019-05-04 03:35:55 +03:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "viu";
2021-02-07 17:13:15 +03:00
version = "1.3.0";
2019-05-04 03:35:55 +03:00
src = fetchFromGitHub {
owner = "atanunq";
repo = "viu";
rev = "v${version}";
2021-02-07 17:13:15 +03:00
sha256 = "1n1qwlh1zinq5ngx04cvs69z8zr12yywr70vbrc946kbh4hx6pk9";
2019-05-04 03:35:55 +03:00
};
2021-02-07 17:13:15 +03:00
# tests need an interactive terminal
2020-04-09 00:24:57 +03:00
doCheck = false;
2019-05-04 03:35:55 +03:00
cargoSha256 = "0s6i42n4jivzj4ad62r7nc6ailydy686ivszcd6cj5f4dinsbgq3";
2019-05-04 03:35:55 +03:00
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 ];
};
}