nixpkgs/pkgs/development/libraries/ffms/default.nix
2017-08-03 11:56:15 +02:00

27 lines
672 B
Nix

{ stdenv, fetchFromGitHub, zlib, ffmpeg, pkgconfig }:
stdenv.mkDerivation rec {
name = "ffms-${version}";
version = "2.22";
src = fetchFromGitHub {
owner = "FFMS";
repo = "ffms2";
rev = version;
sha256 = "1ywcx1f3q533qfrbck5qhik3l617qhm062l8zixv02gnla7w6rkm";
};
NIX_CFLAGS_COMPILE = "-fPIC";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib ffmpeg ];
meta = with stdenv.lib; {
homepage = https://github.com/FFMS/ffms2/;
description = "Libav/ffmpeg based source library for easy frame accurate access";
license = licenses.mit;
maintainers = with maintainers; [ fuuzetsu ];
platforms = platforms.unix;
};
}