From 05f31b13153680de84cb13d7645d80df14938a4e Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 24 Jul 2023 16:13:37 -0400 Subject: [PATCH] lscolors: fix build to include the binary --- pkgs/applications/misc/lscolors/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/misc/lscolors/default.nix b/pkgs/applications/misc/lscolors/default.nix index 857321ff804d..cf1258dfff38 100644 --- a/pkgs/applications/misc/lscolors/default.nix +++ b/pkgs/applications/misc/lscolors/default.nix @@ -11,12 +11,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-93FAEhl0WFXRq1SaoLRNDd/fy7NyDbeRFgIqUWAssQE="; + buildFeatures = [ "nu-ansi-term" ]; + # setid is not allowed in the sandbox checkFlags = [ "--skip=tests::style_for_setid" ]; meta = with lib; { description = "Rust library and tool to colorize paths using LS_COLORS"; homepage = "https://github.com/sharkdp/lscolors"; + changelog = "https://github.com/sharkdp/lscolors/releases/tag/v${version}"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ SuperSandro2000 ]; };