mkvtoolnix: 59.0.0 -> 60.0.0 (#133688)
Use stdenv.mkDerivation instead of mkDerivation from libsForQt5, because the latter forces the compiler to LLVM 5 on Darwin, which doesn't support the new C++ filesystem library. Fixes #132675.
This commit is contained in:
parent
c93884185a
commit
cfda443b68
1 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, mkDerivation
|
||||
, fetchFromGitLab
|
||||
, pkg-config
|
||||
, autoreconfHook
|
||||
|
@ -46,15 +45,15 @@ let
|
|||
'';
|
||||
|
||||
in
|
||||
mkDerivation rec {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mkvtoolnix";
|
||||
version = "59.0.0";
|
||||
version = "60.0.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "mbunkus";
|
||||
repo = "mkvtoolnix";
|
||||
rev = "release-${version}";
|
||||
sha256 = "sha256-bPypOsveXrkz1V961b9GTJKFdgru/kcW15z/yik/4yQ=";
|
||||
sha256 = "sha256-WtEC/EH0G1Tm6OK6hmVRzloLkO8mxxOYYZY7k/Wi2zE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
|
Loading…
Reference in a new issue