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.
launchpad/nixpkgs/master
Sebastián Mancilla 3 years ago committed by GitHub
parent c93884185a
commit cfda443b68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      pkgs/applications/video/mkvtoolnix/default.nix

@ -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…
Cancel
Save