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

31 lines
693 B
Nix
Raw Normal View History

2018-07-14 09:44:44 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig
, libebml }:
stdenv.mkDerivation rec {
2019-03-26 15:02:20 +00:00
pname = "libmatroska";
2020-08-26 09:53:55 +00:00
version = "1.6.2";
2018-07-14 09:44:44 +00:00
src = fetchFromGitHub {
owner = "Matroska-Org";
repo = "libmatroska";
rev = "release-${version}";
2020-08-26 09:53:55 +00:00
sha256 = "0yhr9hhgljva1fx3b0r4s3wkkypdfgsysbl35a4g3krkbhaa9rsd";
};
2018-07-14 09:44:44 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ libebml ];
2018-07-14 09:44:44 +00:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=YES"
];
2015-03-05 20:46:13 +00:00
meta = with stdenv.lib; {
description = "A library to parse Matroska files";
homepage = "https://matroska.org/";
2015-03-05 20:46:13 +00:00
license = licenses.lgpl21;
2018-07-14 09:44:44 +00:00
maintainers = with maintainers; [ spwhitt ];
2015-03-05 20:46:13 +00:00
platforms = platforms.unix;
};
}