vscode-extensions.bierner.color-info: init at 0.7.2 (#419247)

authored by Pol Dellaiera and committed by GitHub ddbf495e d1cff3ac

+27
+7
maintainers/maintainer-list.nix
··· 25301 25301 githubId = 3799330; 25302 25302 name = "Timo Kaufmann"; 25303 25303 }; 25304 + timon = { 25305 + name = "Timon Schelling"; 25306 + email = "me@timon.zip"; 25307 + matrix = "@timon:beeper.com"; 25308 + github = "timon-schelling"; 25309 + githubId = 36821505; 25310 + }; 25304 25311 timor = { 25305 25312 email = "timor.dd@googlemail.com"; 25306 25313 github = "timor";
+18
pkgs/applications/editors/vscode/extensions/bierner.color-info/default.nix
··· 1 + { lib, vscode-utils }: 2 + 3 + vscode-utils.buildVscodeMarketplaceExtension { 4 + mktplcRef = { 5 + name = "color-info"; 6 + publisher = "bierner"; 7 + version = "0.7.2"; 8 + hash = "sha256-Bf0thdt4yxH7OsRhIXeqvaxD1tbHTrUc4QJcju7Hv90="; 9 + }; 10 + meta = { 11 + description = "VSCode Extension that provides additional information about css colors"; 12 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=bierner.color-info"; 13 + homepage = "https://github.com/mattbierner/vscode-color-info"; 14 + changelog = "https://marketplace.visualstudio.com/items/bierner.color-info/changelog"; 15 + license = lib.licenses.mit; 16 + maintainers = [ lib.maintainers.timon ]; 17 + }; 18 + }
+2
pkgs/applications/editors/vscode/extensions/default.nix
··· 580 580 }; 581 581 }; 582 582 583 + bierner.color-info = callPackage ./bierner.color-info { }; 584 + 583 585 bierner.docs-view = buildVscodeMarketplaceExtension { 584 586 mktplcRef = { 585 587 name = "docs-view";