1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/ffms/default.nix

23 lines
618 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, ffmpeg, pkgconfig }:
2013-12-16 13:32:50 +00:00
stdenv.mkDerivation rec {
2014-09-30 10:46:00 +01:00
name = "ffms-2.20";
2013-12-16 13:32:50 +00:00
src = fetchurl {
2014-09-30 10:46:00 +01:00
url = https://codeload.github.com/FFMS/ffms2/tar.gz/2.20;
2013-12-16 13:32:50 +00:00
name = "${name}.tar.gz";
2014-09-30 10:46:00 +01:00
sha256 = "183klnhl57zf0i8xlr7yvj89ih83pzd48c37qpr57hjn4wbq1n67";
};
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 10:46:00 +01:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}