termplay: init at 2.0.4

This commit is contained in:
jD91mZM2 2018-05-05 20:15:59 +02:00
parent e450d9fb90
commit 2d08df417f
No known key found for this signature in database
GPG key ID: 3055D54729A72666
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ rustPlatform, fetchFromGitHub, lib, makeWrapper, gst_all_1, libsixel }:
rustPlatform.buildRustPackage rec {
name = "termplay-${version}";
version = "2.0.4";
src = fetchFromGitHub {
owner = "jD91mZM2";
repo = "termplay";
rev = version;
sha256 = "0qgx9xmi8n3sq5n5m6gai777sllw9hyki2kwsj2k4h1ykibzq9r0";
};
cargoBuildFlags = ["--features" "bin"];
cargoSha256 = "1ghvp4n6mvckamvn3hk672wh29jlrwmhrd4hv3mh98li1x9ssbmf";
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-ugly
gst_all_1.gst-plugins-bad
libsixel
];
postInstall = ''
wrapProgram $out/bin/termplay --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
'';
meta = with lib; {
description = "Play an image/video in your terminal";
homepage = https://jd91mzm2.github.io/termplay/;
license = licenses.mit;
maintainers = with maintainers; [ jD91mZM2 ];
platforms = platforms.unix;
};
}

View file

@ -5143,6 +5143,8 @@ with pkgs;
telepresence = callPackage ../tools/networking/telepresence { };
termplay = callPackage ../tools/misc/termplay { };
tewisay = callPackage ../tools/misc/tewisay { };
texmacs = if stdenv.isDarwin