mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
kdiff3: mark as supported on darwin (#299553)
Tested this on aarch64 and x86_64 and it works.
This commit is contained in:
parent
7104ed6a1d
commit
abe7e2fa57
@ -27,12 +27,16 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
cmakeFlags = [ "-Wno-dev" ];
|
||||
|
||||
postInstall = lib.optionalString stdenv.isDarwin ''
|
||||
ln -s "$out/Applications/KDE/kdiff3.app/Contents/MacOS" "$out/bin"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Compares and merges 2 or 3 files or directories";
|
||||
mainProgram = "kdiff3";
|
||||
homepage = "https://invent.kde.org/sdk/kdiff3";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
platforms = with platforms; linux;
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user