2014-05-04 00:52:45 +01:00
|
|
|
{ stdenv, fetchgit, libtool, autoconf, automake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libmkv";
|
2018-05-10 09:23:26 +01:00
|
|
|
version = "0.6.5.1";
|
|
|
|
|
2014-05-04 00:52:45 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/saintdev/libmkv.git;
|
2018-05-10 09:23:26 +01:00
|
|
|
rev = "refs/tags/${version}";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl";
|
2014-05-04 00:52:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ libtool autoconf automake ];
|
|
|
|
|
|
|
|
preConfigure = "sh bootstrap.sh";
|
|
|
|
|
|
|
|
meta = {
|
2018-12-28 14:11:52 +00:00
|
|
|
description = "Abandoned library. Alternative lightweight Matroska muxer written for HandBrake";
|
|
|
|
longDescription = ''
|
|
|
|
Library was meant to be an alternative to the official libmatroska library.
|
|
|
|
It is written in plain C, and intended to be very portable.
|
|
|
|
'';
|
2014-05-04 00:52:45 +01:00
|
|
|
homepage = https://github.com/saintdev/libmkv;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.wmertens ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-05-04 00:52:45 +01:00
|
|
|
};
|
|
|
|
}
|