Merge pull request #145958 from msfjarvis/hs/2021-11-14/lscolors-0.8.1

authored by Sandro and committed by GitHub c6be3b50 1553a73f

+7 -4
+7 -4
pkgs/applications/misc/lscolors/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "lscolors"; 5 - version = "0.8.0"; 5 + version = "0.8.1"; 6 6 7 7 src = fetchCrate { 8 8 inherit version pname; 9 - sha256 = "sha256-dwtrs9NlhJ+km2/146HMnDirWRB5Ur5LTmWdKAK03v0="; 9 + sha256 = "sha256-74KNnERhyiZamVyS9yzDNVf33KMqDiSfPb5BCTKFuHA="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-vQnrLt+VSDPr61VMkYFtjSDnEt+NmWBZUd4qLzPzQBU="; 12 + cargoSha256 = "sha256-mjGZ/q9BByndwfnFGk6k5KD9ctY0X0/oaEugiOJY8Ms="; 13 + 14 + # setid is not allowed in the sandbox 15 + checkFlags = [ "--skip=tests::style_for_setid" ]; 13 16 14 17 meta = with lib; { 15 18 description = "Rust library and tool to colorize paths using LS_COLORS"; 16 19 homepage = "https://github.com/sharkdp/lscolors"; 17 - license = with licenses; [ asl20 mit ]; 20 + license = with licenses; [ asl20 /* or */ mit ]; 18 21 maintainers = with maintainers; [ SuperSandro2000 ]; 19 22 }; 20 23 }