2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libtool, autoconf, automake }:
|
2014-05-04 01:52:45 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libmkv";
|
2018-05-10 10:23:26 +02:00
|
|
|
version = "0.6.5.1";
|
|
|
|
|
2020-11-01 23:39:49 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "saintdev";
|
|
|
|
repo = pname;
|
2018-05-10 10:23:26 +02:00
|
|
|
rev = "refs/tags/${version}";
|
2016-06-02 13:26:44 +02:00
|
|
|
sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl";
|
2014-05-04 01:52:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ libtool autoconf automake ];
|
|
|
|
|
|
|
|
preConfigure = "sh bootstrap.sh";
|
|
|
|
|
|
|
|
meta = {
|
2018-12-28 15:11:52 +01: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.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/saintdev/libmkv";
|
2021-01-21 18:00:13 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = [ lib.maintainers.wmertens ];
|
|
|
|
platforms = lib.platforms.unix;
|
2014-05-04 01:52:45 +02:00
|
|
|
};
|
|
|
|
}
|