fish: cleanup

This commit is contained in:
Gaetan Lepage
2025-03-14 20:00:23 +01:00
parent 1abd5bef0f
commit e3c72248bb
+8 -8
View File
@@ -267,11 +267,11 @@ stdenv.mkDerivation (finalAttrs: {
cmakeFlags =
[
"-DCMAKE_INSTALL_DOCDIR=${placeholder "doc"}/share/doc/fish"
"-DRust_CARGO_TARGET=${stdenv.hostPlatform.rust.rustcTarget}"
(lib.cmakeFeature "CMAKE_INSTALL_DOCDIR" "${placeholder "doc"}/share/doc/fish")
(lib.cmakeFeature "Rust_CARGO_TARGET" stdenv.hostPlatform.rust.rustcTarget)
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
"-DMAC_CODESIGN_ID=OFF"
(lib.cmakeBool "MAC_CODESIGN_ID" false)
];
# Fishs test suite needs to be able to look up process information and send signals.
@@ -381,13 +381,13 @@ stdenv.mkDerivation (finalAttrs: {
tee -a $out/share/fish/__fish_build_paths.fish < ${fishPreInitHooks}
'';
meta = with lib; {
meta = {
description = "Smart and user-friendly command line shell";
homepage = "https://fishshell.com/";
changelog = "https://github.com/fish-shell/fish-shell/releases/tag/${version}";
license = licenses.gpl2Only;
platforms = platforms.unix;
maintainers = with maintainers; [
changelog = "https://github.com/fish-shell/fish-shell/releases/tag/${finalAttrs.version}";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
adamcstephens
cole-h
winter