nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ansi: cleanup

+5 -5
+5 -5
pkgs/development/tools/ansi/default.nix
··· 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-KGPlNXkF16VdoOb3tg3nsQRdtgU83z7ibPy965bvvDk="; 9 + hash = "sha256-KGPlNXkF16VdoOb3tg3nsQRdtgU83z7ibPy965bvvDk="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-Q46VKBrOsjqUeSruuK/Bur2L69JAGr3c+ianfPlfzi0="; 12 + cargoHash = "sha256-Q46VKBrOsjqUeSruuK/Bur2L69JAGr3c+ianfPlfzi0="; 13 13 14 - meta = with lib; { 14 + meta = { 15 15 description = "Quickly get ANSI escape sequences"; 16 16 longDescription = '' 17 17 CLI utility called "ansi" to quickly get ANSI escape sequences. Supports 18 18 the colors and styles, such as bold or italic. 19 19 ''; 20 20 homepage = "https://github.com/phip1611/ansi-escape-sequences-cli"; 21 - license = with licenses; [ mit ]; 22 - maintainers = with maintainers; [ phip1611 ]; 21 + license = with lib.licenses; [ mit ]; 22 + maintainers = with lib.maintainers; [ phip1611 ]; 23 23 mainProgram = "ansi"; 24 24 }; 25 25 }