linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / termplay / default.nix
blobd60a65214b74c9debbaabf4c50a9a7de1d6b0d69
1 { rustPlatform, fetchFromGitLab, lib, makeWrapper, gst_all_1, libsixel }:
3 rustPlatform.buildRustPackage rec {
4   pname = "termplay";
5   version = "2.0.6";
7   src = fetchFromGitLab {
8     owner = "jD91mZM2";
9     repo = "termplay";
10     rev = "v${version}";
11     sha256 = "1w7hdqgqr1jgxid3k7f2j52wz31gv8bzr9rsm6xzp7nnihp6i45p";
12   };
14   cargoBuildFlags = ["--features" "bin"];
15   cargoSha256 = "0nxm2k8dx6nxyghvpw44wqfd1n65947v2wqxxvy641hin4d7xzma";
17   nativeBuildInputs = [ makeWrapper ];
18   buildInputs = [
19     gst_all_1.gstreamer
20     gst_all_1.gst-plugins-base
21     gst_all_1.gst-plugins-good
22     gst_all_1.gst-plugins-ugly
23     gst_all_1.gst-plugins-bad
24     libsixel
25   ];
27   postInstall = ''
28     wrapProgram $out/bin/termplay --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
29   '';
31   meta = with lib; {
32     description = "Play an image/video in your terminal";
33     homepage = "https://jd91mzm2.github.io/termplay/";
34     license = licenses.mit;
35     maintainers = with maintainers; [ jD91mZM2 ];
36     platforms = platforms.unix;
37   };