nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchgit, libtool, autoconf, automake }:
2
3stdenv.mkDerivation rec {
4 pname = "libmkv";
5 version = "0.6.5.1";
6
7 src = fetchgit {
8 url = "https://github.com/saintdev/libmkv.git";
9 rev = "refs/tags/${version}";
10 sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl";
11 };
12
13 nativeBuildInputs = [ libtool autoconf automake ];
14
15 preConfigure = "sh bootstrap.sh";
16
17 meta = {
18 description = "Abandoned library. Alternative lightweight Matroska muxer written for HandBrake";
19 longDescription = ''
20 Library was meant to be an alternative to the official libmatroska library.
21 It is written in plain C, and intended to be very portable.
22 '';
23 homepage = "https://github.com/saintdev/libmkv";
24 license = stdenv.lib.licenses.gpl2;
25 maintainers = [ stdenv.lib.maintainers.wmertens ];
26 platforms = stdenv.lib.platforms.unix;
27 };
28}