Merge pull request #285663 from mattpolzin/non-sixel-presenterm
presenterm: disable sixel for darwin to unbreak package
This commit is contained in:
commit
5b49642bad
1 changed files with 3 additions and 4 deletions
|
@ -24,7 +24,9 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
cargoHash = "sha256-bufFiyqRsn4eG57bKn42p5cyX+Z7oiz/USZvg9YOvHA=";
|
cargoHash = "sha256-bufFiyqRsn4eG57bKn42p5cyX+Z7oiz/USZvg9YOvHA=";
|
||||||
|
|
||||||
buildFeatures = [ "sixel" ];
|
# Crashes at runtime on darwin with:
|
||||||
|
# Library not loaded: .../out/lib/libsixel.1.dylib
|
||||||
|
buildFeatures = lib.optionals (!stdenv.isDarwin) [ "sixel" ];
|
||||||
|
|
||||||
# Skip test that currently doesn't work
|
# Skip test that currently doesn't work
|
||||||
checkFlags = [ "--skip=execute::test::shell_code_execution" ];
|
checkFlags = [ "--skip=execute::test::shell_code_execution" ];
|
||||||
|
@ -41,8 +43,5 @@ rustPlatform.buildRustPackage rec {
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ mikaelfangel ];
|
maintainers = with maintainers; [ mikaelfangel ];
|
||||||
mainProgram = "presenterm";
|
mainProgram = "presenterm";
|
||||||
# Crashes at runtime on darwin with:
|
|
||||||
# Library not loaded: .../out/lib/libsixel.1.dylib
|
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue