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

24 lines
570 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libebml }:
stdenv.mkDerivation rec {
2017-10-07 23:12:00 +02:00
name = "libmatroska-1.4.8";
src = fetchurl {
2017-10-07 23:12:00 +02:00
url = "http://dl.matroska.org/downloads/libmatroska/${name}.tar.xz";
sha256 = "14n9sw974prr3yp4yjb7aadi6x2yz5a0hjw8fs3qigy5shh2piyq";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libebml ];
2015-03-05 21:46:13 +01:00
meta = with stdenv.lib; {
description = "A library to parse Matroska files";
homepage = https://matroska.org/;
2015-03-05 21:46:13 +01:00
license = licenses.lgpl21;
maintainers = [ maintainers.spwhitt ];
platforms = platforms.unix;
};
}