nixpkgs/pkgs/development/libraries/ffms/default.nix

23 lines
618 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, ffmpeg, pkgconfig }:
2013-12-16 14:32:50 +01:00
stdenv.mkDerivation rec {
2016-01-03 21:29:04 +01:00
name = "ffms-2.21";
2013-12-16 14:32:50 +01:00
src = fetchurl {
2016-01-03 21:29:04 +01:00
url = https://codeload.github.com/FFMS/ffms2/tar.gz/2.21;
2013-12-16 14:32:50 +01:00
name = "${name}.tar.gz";
2016-01-03 21:29:04 +01:00
sha256 = "00h2a5yhvr1qzbrzwbjv1ybxrx25lchgral6yxv36aaf4pi3rhn2";
};
NIX_CFLAGS_COMPILE = "-fPIC";
buildInputs = [ zlib ffmpeg pkgconfig ];
meta = {
homepage = http://code.google.com/p/ffmpegsource/;
description = "Libav/ffmpeg based source library for easy frame accurate access";
license = stdenv.lib.licenses.mit;
2014-09-30 11:46:00 +02:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}