about summary refs log tree commit diff
path: root/pkgs/development/libraries/ffmpeg-sixel/default.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-03-27 12:52:12 +0200
committerGitHub <noreply@github.com>2022-03-27 12:52:12 +0200
commit5c1f8cd19fdce40d2e0f1576b6dc744fab4837bf (patch)
treedcd7c7abea84063194658b23cf2476bac225467d /pkgs/development/libraries/ffmpeg-sixel/default.nix
parentb240a774b33f3600910c757b861d9673ce1e3c54 (diff)
parentf0cac4d2ba5b8c1f27b781d85af5f3645d1aa078 (diff)
downloadnixlib-5c1f8cd19fdce40d2e0f1576b6dc744fab4837bf.tar
nixlib-5c1f8cd19fdce40d2e0f1576b6dc744fab4837bf.tar.gz
nixlib-5c1f8cd19fdce40d2e0f1576b6dc744fab4837bf.tar.bz2
nixlib-5c1f8cd19fdce40d2e0f1576b6dc744fab4837bf.tar.lz
nixlib-5c1f8cd19fdce40d2e0f1576b6dc744fab4837bf.tar.xz
nixlib-5c1f8cd19fdce40d2e0f1576b6dc744fab4837bf.tar.zst
nixlib-5c1f8cd19fdce40d2e0f1576b6dc744fab4837bf.zip
Merge pull request #163509 from NixOS/drop/ffmpeg_3
Diffstat (limited to 'pkgs/development/libraries/ffmpeg-sixel/default.nix')
-rw-r--r--pkgs/development/libraries/ffmpeg-sixel/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/libraries/ffmpeg-sixel/default.nix b/pkgs/development/libraries/ffmpeg-sixel/default.nix
deleted file mode 100644
index daa03d0293a0..000000000000
--- a/pkgs/development/libraries/ffmpeg-sixel/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, libsixel, yasm
-}:
-
-stdenv.mkDerivation {
-
-  pname = "ffmpeg-sixel";
-  version = "nightly-2.3.x";
-
-  src = fetchFromGitHub {
-    owner = "saitoha";
-    repo = "FFmpeg-SIXEL";
-    rev = "8566fdb8b7516b54aed58f329dc216e06fc10052";
-    sha256 = "00s2lggfdj2ibpngpyqqg7360p7yb69ys1ppg59yvv0m0mxk5x3k";
-  };
-
-  nativeBuildInputs = [ pkg-config ];
-  buildInputs = [
-    libsixel
-    yasm
-  ];
-
-  configurePhase = ''
-    ./configure --enable-libsixel --prefix=$out
-  '';
-
-  postInstall = ''
-    mv $out/bin/ffmpeg $out/bin/ffmpeg-sixel
-  '';
-
-  meta = with lib; {
-    description = "A complete, cross-platform solution to record, convert and stream audio and video, extended to support console graphics";
-    homepage = "http://www.ffmpeg.org/";
-    license = licenses.lgpl3;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ vrthra ];
-  };
-}