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

31 lines
701 B
Nix
Raw Normal View History

2018-07-14 09:44:44 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig
, libebml }:
stdenv.mkDerivation rec {
2018-07-14 09:44:44 +00:00
name = "libmatroska-${version}";
version = "1.4.9";
2018-07-14 09:44:44 +00:00
src = fetchFromGitHub {
owner = "Matroska-Org";
repo = "libmatroska";
rev = "release-${version}";
sha256 = "1hfrcpvmyqnvdkw8rz1z20zw7fpnjyl5h0g9ky7k6y1a44b1fz86";
};
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;
};
}