mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
29 lines
884 B
Nix
29 lines
884 B
Nix
{ stdenv, fetchgit, libtool, autoconf, automake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libmkv";
|
|
version = "0.6.5.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/saintdev/libmkv.git";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl";
|
|
};
|
|
|
|
nativeBuildInputs = [ libtool autoconf automake ];
|
|
|
|
preConfigure = "sh bootstrap.sh";
|
|
|
|
meta = {
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/saintdev/libmkv";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = [ stdenv.lib.maintainers.wmertens ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|