Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

confetty: init at unstable-2022-11-05

https://github.com/maaslalani/confetty

figsoda 8a0d4e51 e16572ae

+29
+27
pkgs/applications/misc/confetty/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule { 7 + pname = "confetty"; 8 + version = "unstable-2022-11-05"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "maaslalani"; 12 + repo = "confetty"; 13 + rev = "6c6f1b5b605f78c3ed3bab2d2a1357c0dd794221"; 14 + hash = "sha256-1BAszv9I2JDflWyHuAlbJo7+oI7BI/TL10uFIYa8mLk="; 15 + }; 16 + 17 + vendorHash = "sha256-RymdnueY674Zd231O8CIw/TEIDaWDzc+AaI6yk9hFgc="; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 + 21 + meta = with lib; { 22 + description = "Confetti in your TTY"; 23 + homepage = "https://github.com/maaslalani/confetty"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ figsoda ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 509 509 510 510 crc = callPackage ../applications/networking/cluster/crc { }; 511 511 512 + confetty = callPackage ../applications/misc/confetty { }; 513 + 512 514 confy = callPackage ../applications/misc/confy { }; 513 515 514 516 coordgenlibs = callPackage ../development/libraries/coordgenlibs { };