Merge pull request #245236 from figsoda/lscolors

lscolors: fix build to include the binary

authored by Sandro and committed by GitHub addf248c f1aa6180

+3
+3
pkgs/applications/misc/lscolors/default.nix
··· 11 12 cargoHash = "sha256-93FAEhl0WFXRq1SaoLRNDd/fy7NyDbeRFgIqUWAssQE="; 13 14 # setid is not allowed in the sandbox 15 checkFlags = [ "--skip=tests::style_for_setid" ]; 16 17 meta = with lib; { 18 description = "Rust library and tool to colorize paths using LS_COLORS"; 19 homepage = "https://github.com/sharkdp/lscolors"; 20 license = with licenses; [ asl20 /* or */ mit ]; 21 maintainers = with maintainers; [ SuperSandro2000 ]; 22 };
··· 11 12 cargoHash = "sha256-93FAEhl0WFXRq1SaoLRNDd/fy7NyDbeRFgIqUWAssQE="; 13 14 + buildFeatures = [ "nu-ansi-term" ]; 15 + 16 # setid is not allowed in the sandbox 17 checkFlags = [ "--skip=tests::style_for_setid" ]; 18 19 meta = with lib; { 20 description = "Rust library and tool to colorize paths using LS_COLORS"; 21 homepage = "https://github.com/sharkdp/lscolors"; 22 + changelog = "https://github.com/sharkdp/lscolors/releases/tag/v${version}"; 23 license = with licenses; [ asl20 /* or */ mit ]; 24 maintainers = with maintainers; [ SuperSandro2000 ]; 25 };