linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / ffms / default.nix
blob7fa96cff7f88e66e1272d2caa5e83ed53626a474
1 { lib, stdenv, fetchFromGitHub, zlib, ffmpeg_3, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "ffms";
5   version = "2.23";
7   src = fetchFromGitHub {
8     owner = "FFMS";
9     repo = "ffms2";
10     rev = version;
11     sha256 = "0dkz5b3gxq5p4xz0qqg6l2sigszrlsinz3skyf0ln4wf3zrvf8m5";
12   };
14   NIX_CFLAGS_COMPILE = "-fPIC";
16   nativeBuildInputs = [ pkg-config ];
17   buildInputs = [ zlib ffmpeg_3 ];
19   # ffms includes a built-in vapoursynth plugin, see:
20   # https://github.com/FFMS/ffms2#avisynth-and-vapoursynth-plugin
21   postInstall = ''
22     mkdir $out/lib/vapoursynth
23     ln -s $out/lib/libffms2.so $out/lib/vapoursynth/libffms2.so
24   '';
26   meta = with lib; {
27     homepage = "https://github.com/FFMS/ffms2/";
28     description = "Libav/ffmpeg based source library for easy frame accurate access";
29     license = licenses.mit;
30     maintainers = with maintainers; [ ];
31     platforms = platforms.unix;
32   };