summary refs log tree commit diff
path: root/pkgs/tools/misc/termplay/default.nix
diff options
context:
space:
mode:
authorjD91mZM2 <me@krake.one>2018-05-05 20:15:59 +0200
committerjD91mZM2 <me@krake.one>2018-05-06 14:49:18 +0200
commit2d08df417fa9008440081a6d2d1cd6db9d854ff9 (patch)
tree4bb259d246c527c2d278870b3de72039c04e0472 /pkgs/tools/misc/termplay/default.nix
parente450d9fb908c996e4ae832a35975e3ac92f4f64e (diff)
downloadnixpkgs-2d08df417fa9008440081a6d2d1cd6db9d854ff9.tar
nixpkgs-2d08df417fa9008440081a6d2d1cd6db9d854ff9.tar.gz
nixpkgs-2d08df417fa9008440081a6d2d1cd6db9d854ff9.tar.bz2
nixpkgs-2d08df417fa9008440081a6d2d1cd6db9d854ff9.tar.lz
nixpkgs-2d08df417fa9008440081a6d2d1cd6db9d854ff9.tar.xz
nixpkgs-2d08df417fa9008440081a6d2d1cd6db9d854ff9.tar.zst
nixpkgs-2d08df417fa9008440081a6d2d1cd6db9d854ff9.zip
termplay: init at 2.0.4
Diffstat (limited to 'pkgs/tools/misc/termplay/default.nix')
-rw-r--r--pkgs/tools/misc/termplay/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/tools/misc/termplay/default.nix b/pkgs/tools/misc/termplay/default.nix
new file mode 100644
index 00000000000..5771ec6aff1
--- /dev/null
+++ b/pkgs/tools/misc/termplay/default.nix
@@ -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;
+  };
+}