Skip to content

Commit 3fbd6a6

Browse files
committed
Rename derivatives and include QL for QL pack.
1 parent c5be6b1 commit 3fbd6a6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

scripts/codeql/default.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ let
22
pkgs = import <nixpkgs> {};
33
in
44
rec {
5-
ql-extractor_0_0_1 = pkgs.callPackage ./ql-extractor/0.0.1.nix {inherit codeql-cli_2_16_0;};
6-
codeql-cli_2_16_0 = pkgs.callPackage ./codeql-cli/2.16.0.nix {};
7-
codeql-cli_2_16_0_with_ql_extractor = pkgs.callPackage ./codeql-cli/2.16.0.nix { withQlExtractor = ql-extractor_0_0_1; };
8-
5+
ql-extractor-0_0_1 = pkgs.callPackage ./ql-extractor/0.0.1.nix {};
6+
codeql-cli-2_16_0 = pkgs.callPackage ./codeql-cli/2.16.0.nix {};
7+
codeql-ql-0_0_1-dev = pkgs.callPackage ./codeql-ql/0.0.1-dev.nix { withCodeQlCli = codeql-cli-2_16_0; };
8+
codeql-cli-2_16_0-with-ql = pkgs.callPackage ./codeql-cli/2.16.0.nix { withExtractors = [ql-extractor-0_0_1]; withPacks = [codeql-ql-0_0_1-dev];};
99
}

scripts/codeql/ql-extractor/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ let
22
pkgs = import <nixpkgs> {};
33
in
44
{
5-
ql-extractor_0_0_1 = pkgs.callPackage ./0.0.1.nix {};
5+
ql-extractor-0_0_1 = pkgs.callPackage ./0.0.1.nix {};
66
}

shell.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ pkgs.mkShell {
88
clang-tools_14
99
python39
1010
git
11-
gh
11+
gh
1212
jq
13-
codeql-cli_2_16_0_with_ql_extractor
13+
codeql-cli-2_16_0-with-ql
1414
];
1515
}

0 commit comments

Comments
 (0)