1 { lib, stdenv, fetchFromGitHub, libtool, autoconf, automake }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
10 rev = "refs/tags/${version}";
11 sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl";
14 nativeBuildInputs = [ libtool autoconf automake ];
16 preConfigure = "sh bootstrap.sh";
19 description = "Abandoned library. Alternative lightweight Matroska muxer written for HandBrake";
21 Library was meant to be an alternative to the official libmatroska library.
22 It is written in plain C, and intended to be very portable.
24 homepage = "https://github.com/saintdev/libmkv";
25 license = lib.licenses.gpl2;
26 maintainers = [ lib.maintainers.wmertens ];
27 platforms = lib.platforms.unix;