about summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode/extensions/jackmacwindows.craftos-pc/default.nix
blob: 005f78f4f4ae90f32c8c8bef6466316cd084c55c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  vscode-utils,
  craftos-pc,
  jq,
  lib,
  moreutils,
}:

vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    name = "craftos-pc";
    publisher = "jackmacwindows";
    version = "1.2.2";
    hash = "sha256-A+MNroXv0t9Mw/gr0Fyov3cXyF/GGzwRLKrIxQ2tKCE=";
  };
  nativeBuildInputs = [
    jq
    moreutils
  ];
  postInstall = ''
    cd "$out/$installPrefix"

    jq -e '
      .contributes.configuration.properties."craftos-pc.executablePath.linux".default =
        "${lib.meta.getExe craftos-pc}" |
      .contributes.configuration.properties."craftos-pc.executablePath.mac".default =
        "${lib.meta.getExe craftos-pc}" |
      .contributes.configuration.properties."craftos-pc.executablePath.windows".default =
        "${lib.meta.getExe craftos-pc}"
    ' \
    < package.json \
    | sponge package.json
  '';
  meta = {
    changelog = "https://marketplace.visualstudio.com/items/jackmacwindows.craftos-pc/changelog";
    description = "A Visual Studio Code extension for opening a CraftOS-PC window";
    downloadPage = "https://marketplace.visualstudio.com/items?itemName=jackmacwindows.craftos-pc";
    homepage = "https://www.craftos-pc.cc/docs/extension";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ tomodachi94 ];
    platforms = craftos-pc.meta.platforms;
  };
}