mkvtoolnix: 53.0.0 -> 55.0.0

This commit is contained in:
Thibault Gagnaux 2021-03-14 21:47:13 +01:00
parent ad4daeefbd
commit 9235d126cc
No known key found for this signature in database
GPG key ID: 44BD0764ACAE8E25

View file

@ -13,13 +13,13 @@ with lib;
stdenv.mkDerivation rec {
pname = "mkvtoolnix";
version = "53.0.0";
version = "55.0.0";
src = fetchFromGitLab {
owner = "mbunkus";
repo = "mkvtoolnix";
rev = "release-${version}";
sha256 = "04wjs3sgb3gn85gl8y1svx177d1213hswx37zdsj80giw1k5df79";
sha256 = "129azp4cpdd05f6072gkxdjj811aqs29nbw6v6qm8vv47gfvjcf7";
};
nativeBuildInputs = [
@ -51,6 +51,7 @@ stdenv.mkDerivation rec {
];
CXXFLAGS = optional stdenv.cc.isClang "-std=c++17";
LDFLAGS = optional stdenv.cc.isClang "-lc++fs";
dontWrapQtApps = true;
postFixup = optionalString withGUI ''
@ -60,7 +61,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Cross-platform tools for Matroska";
homepage = "http://www.bunkus.org/videotools/mkvtoolnix/";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ codyopel rnhmjoj ];
platforms = platforms.linux
++ optionals (!withGUI) platforms.darwin;