Skip to content

Commit 39701d4

Browse files
committed
nix derivation
1 parent 6457095 commit 39701d4

File tree

7 files changed

+95
-76
lines changed

7 files changed

+95
-76
lines changed

.github/workflows/build.yml

+6-25
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,22 @@
11
name: build
22
on:
33
push:
4-
branches:
5-
- master
64
pull_request:
75
branches:
86
- master
97

108
jobs:
119
package:
12-
runs-on: ubuntu-20.04
13-
defaults:
14-
run:
15-
shell: nix develop -c bash {0}
10+
runs-on: ubuntu-22.04
1611
steps:
1712
- uses: actions/checkout@v3
18-
with:
19-
submodules: true
20-
- uses: cachix/install-nix-action@v16
21-
# TODO: implement build cache
22-
- run: npm ci
23-
- run: ./compile_sqls.fish
24-
- run: npx vsce package --out sqlnotebook-${{ github.sha }}.vsix
13+
- uses: DeterminateSystems/nix-installer-action@v4
14+
- uses: DeterminateSystems/magic-nix-cache-action@v2
15+
- run: nix build
16+
- name: Prepare to upload
17+
run: cp ./result/* sqlnotebook-${{ github.sha }}.vsix
2518
- name: Upload vsix as artifact
2619
uses: actions/upload-artifact@v1
2720
with:
2821
name: sqlnotebook-${{ github.sha }}.vsix
2922
path: sqlnotebook-${{ github.sha }}.vsix
30-
test:
31-
runs-on: ubuntu-20.04
32-
defaults:
33-
run:
34-
shell: nix develop -c bash {0}
35-
steps:
36-
- uses: actions/checkout@v3
37-
with:
38-
submodules: true
39-
- uses: cachix/install-nix-action@v16
40-
- run: npm ci
41-
- run: npm run lint

.github/workflows/publish.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,16 @@ on:
55

66
jobs:
77
publish:
8-
runs-on: ubuntu-latest
9-
defaults:
10-
run:
11-
shell: nix develop -c bash {0}
8+
runs-on: ubuntu-22.04
129
steps:
1310
- uses: actions/checkout@v3
14-
with:
15-
submodules: true
16-
- uses: cachix/install-nix-action@v16
11+
- uses: DeterminateSystems/nix-installer-action@v4
12+
- uses: DeterminateSystems/magic-nix-cache-action@v2
1713
- name: Parse version
1814
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
19-
- run: npm ci
20-
- run: ./compile_sqls.fish
21-
- run: npx vsce package --out sqlnotebook-${{ env.RELEASE_VERSION }}.vsix
15+
- run: nix build
16+
- name: Prepare to upload
17+
run: cp ./result/* sqlnotebook-${{ env.RELEASE_VERSION }}.vsix
2218
- name: Upload vsix as artifact
2319
uses: actions/upload-artifact@v1
2420
with:

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,12 @@ Open any `.sql` file with the `Open With` menu option. Then, select the `SQL Not
2727
![Screen Shot 2021-12-30 at 1 30 39 PM](https://user-images.githubusercontent.com/7585078/147782929-f9b7846b-6911-45ed-8354-ff0130a912b1.png)
2828

2929
![Screen Shot 2021-12-30 at 1 34 32 PM](https://user-images.githubusercontent.com/7585078/147782853-c0ea8ecb-e5f7-410f-83c2-af3d0562302e.png)
30+
31+
## FAQ
32+
33+
**If the file is stored as a regular `.sql` file, how are cell boundaries detected?**
34+
35+
Cell boundaries are inferred from the presence of two consecutive empty lines.
36+
37+
Note: this can pose issues with certain code formatters. You will need to
38+
configure them to respect consecutive newlines.

compile_sqls.fish

-32
This file was deleted.

flake.lock

+21-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+48-3
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,65 @@
33
inputs = {
44
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
55
flake-utils.url = "github:numtide/flake-utils";
6+
npmlock2nix = {
7+
url = "github:nix-community/npmlock2nix";
8+
flake = false;
9+
};
610
};
711

8-
outputs = { self, nixpkgs, flake-utils }:
12+
outputs = { self, nixpkgs, npmlock2nix, flake-utils }:
913
flake-utils.lib.eachDefaultSystem (system:
1014
let
1115
pkgs = nixpkgs.legacyPackages.${system};
16+
npm2nix = import npmlock2nix { inherit pkgs; };
17+
sqls = { arch, os }: with pkgs; (buildGoModule {
18+
name = "sqls_${arch}_${os}";
19+
src = fetchFromGitHub {
20+
owner = "cmoog";
21+
repo = "sqls";
22+
rev = "8f600074d1b0778c7a0b6b9b820dd4d2d05fbdee";
23+
sha256 = "sha256-3nYWMDKqmQ0NnflX/4vx1BA+rubWV7pRdZcDaKUatO0=";
24+
};
25+
doCheck = false;
26+
vendorHash = "sha256-Xv/LtjwgxydMwychQtW1+quqUbkC5PVzhga5qT5lI3s=";
27+
CGO_ENABLED = 0;
28+
}).overrideAttrs (old: old // { GOOS = os; GOARCH = arch; });
29+
# build each os/arch combination
30+
sqlsInstallCommands = builtins.concatStringsSep "\n" (pkgs.lib.flatten (map
31+
(os: (map
32+
(arch:
33+
# skip this invalid os/arch combination
34+
if arch == "386" && os == "darwin" then "" else
35+
"cp $(find ${sqls { inherit os arch; }} -type f) $out/bin/sqls_${arch}_${os}"
36+
) [ "amd64" "arm64" "386" ])) [ "linux" "darwin" "windows" ]));
37+
sqlsBins = pkgs.runCommand "multiarch-sqls" { } ''
38+
mkdir -p $out/bin
39+
${sqlsInstallCommands}
40+
'';
1241
in
1342
{
1443
formatter = pkgs.nixpkgs-fmt;
44+
packages = {
45+
inherit sqlsBins;
46+
default = npm2nix.v2.build {
47+
src = pkgs.runCommand "src-with-sqls" { } ''
48+
mkdir $out
49+
cp -r ${./.}/* $out
50+
cp -r ${sqlsBins}/bin $out/sqls_bin
51+
'';
52+
nodejs = pkgs.nodejs;
53+
buildCommands = [ "npm run build" ];
54+
installPhase = ''
55+
mkdir -p $out
56+
cp *.vsix $out/
57+
'';
58+
};
59+
};
1560
devShells.default = pkgs.mkShell {
1661
packages = with pkgs; [
1762
fish
18-
go_1_17
19-
nodejs-16_x
63+
go
64+
nodejs
2065
typos
2166
upx
2267
];

src/serializer.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import { TextDecoder, TextEncoder } from 'util';
22
import * as vscode from 'vscode';
33

4+
// Cell block delimiter
5+
const DELIMITER = '\n\n';
6+
47
export class SQLSerializer implements vscode.NotebookSerializer {
58
async deserializeNotebook(
69
context: Uint8Array,
@@ -42,14 +45,14 @@ export class SQLSerializer implements vscode.NotebookSerializer {
4245
? value
4346
: `/*markdown\n${value}\n*/`
4447
)
45-
.join('\n\n')
48+
.join(DELIMITER)
4649
);
4750
}
4851
}
4952

5053
function splitSqlBlocks(raw: string): string[] {
5154
const blocks = [];
52-
for (const block of raw.split('\n\n')) {
55+
for (const block of raw.split(DELIMITER)) {
5356
if (block.trim().length > 0) {
5457
blocks.push(block);
5558
continue;

0 commit comments

Comments
 (0)