File tree Expand file tree Collapse file tree
nixos/doc/manual/release-notes
pkgs/applications/editors/vscode/extensions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 See the release notes of
2525 [ v1.7.0] ( https://github.com/jtroo/kanata/releases/tag/v1.7.0 )
2626 for more information.
27+ - ` vscode-utils.buildVscodeExtension ` now requires pname as an argument
2728
2829<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
2930
Original file line number Diff line number Diff line change 7272 } ;
7373in
7474vscode-utils . buildVscodeExtension {
75- inherit version vsix ;
76- name = "${ pname } -${ version } " ;
75+ inherit version vsix pname ;
7776 src = "${ vsix } /${ pname } .zip" ;
7877 vscodeExtUniqueId = "${ publisher } .${ pname } " ;
7978 vscodeExtPublisher = publisher ;
Original file line number Diff line number Diff line change 1111let
1212 buildVscodeExtension =
1313 a @{
14- name ,
14+ pname ,
1515 src ,
1616 # Same as "Unique Identifier" on the extension's web page.
1717 # For the moment, only serve as unique extension dir.
3333 ...
3434 } :
3535 stdenv . mkDerivation (
36- ( removeAttrs a [ "vscodeExtUniqueId" ] )
36+ ( removeAttrs a [
37+ "vscodeExtUniqueId"
38+ "pname"
39+ ] )
3740 // {
3841
39- name = "vscode-extension-${ name } " ;
42+ pname = "vscode-extension-${ pname } " ;
4043
4144 passthru = passthru // {
4245 inherit vscodeExtPublisher vscodeExtName vscodeExtUniqueId ;
8891 "vsix"
8992 ] )
9093 // {
91- name = "${ mktplcRef . publisher } -${ mktplcRef . name } - ${ mktplcRef . version } " ;
94+ pname = "${ mktplcRef . publisher } -${ mktplcRef . name } " ;
9295 version = mktplcRef . version ;
9396 src = if ( vsix != null ) then vsix else fetchVsixFromVscodeMarketplace mktplcRef ;
9497 vscodeExtPublisher = mktplcRef . publisher ;
You can’t perform that action at this time.
0 commit comments