nixpkgs/pkgs/development/libraries/ffms/default.nix
R. RyanTM f840ef145d ffms: 2.22 -> 2.23
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ffms/versions
2019-03-01 20:54:45 -08:00

27 lines
672 B
Nix

{ stdenv, fetchFromGitHub, zlib, ffmpeg, pkgconfig }:
stdenv.mkDerivation rec {
name = "ffms-${version}";
version = "2.23";
src = fetchFromGitHub {
owner = "FFMS";
repo = "ffms2";
rev = version;
sha256 = "0dkz5b3gxq5p4xz0qqg6l2sigszrlsinz3skyf0ln4wf3zrvf8m5";
};
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;
};
}