mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
kitty: build kitten statically and expose as output
This commit is contained in:
parent
9032311f3c
commit
c611a3428a
@ -76,7 +76,7 @@ buildPythonApplication rec {
|
||||
libicns # For the png2icns tool.
|
||||
];
|
||||
|
||||
outputs = [ "out" "terminfo" "shell_integration" ];
|
||||
outputs = [ "out" "terminfo" "shell_integration" "kitten" ];
|
||||
|
||||
patches = [
|
||||
# Gets `test_ssh_env_vars` to pass when `bzip2` is in the output of `env`.
|
||||
@ -96,6 +96,10 @@ buildPythonApplication rec {
|
||||
# Causes build failure due to warning
|
||||
hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
|
||||
|
||||
CGO_ENABLED = 0;
|
||||
GO_FLAGS = "-trimpath";
|
||||
disallowedReferences = [ go ];
|
||||
|
||||
configurePhase = let
|
||||
goModules = (buildGoModule {
|
||||
pname = "kitty-go-modules";
|
||||
@ -176,15 +180,19 @@ buildPythonApplication rec {
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out
|
||||
mkdir -p $kitten/bin
|
||||
${if stdenv.isDarwin then ''
|
||||
mkdir "$out/bin"
|
||||
ln -s ../Applications/kitty.app/Contents/MacOS/kitty "$out/bin/kitty"
|
||||
ln -s ../Applications/kitty.app/Contents/MacOS/kitten "$out/bin/kitten"
|
||||
cp ./kitty.app/Contents/MacOS/kitten "$kitten/bin/kitten"
|
||||
mkdir "$out/Applications"
|
||||
cp -r kitty.app "$out/Applications/kitty.app"
|
||||
|
||||
installManPage 'docs/_build/man/kitty.1'
|
||||
'' else ''
|
||||
cp -r linux-package/{bin,share,lib} $out
|
||||
cp linux-package/bin/kitten $kitten/bin/kitten
|
||||
''}
|
||||
wrapProgram "$out/bin/kitty" --prefix PATH : "$out/bin:${lib.makeBinPath [ imagemagick ncurses.dev ]}"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user