Skip to content

Commit

Permalink
Pin Nix packages
Browse files Browse the repository at this point in the history
  • Loading branch information
rvermeulen committed Jan 27, 2024
1 parent e60bb08 commit 29a353a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tooling/codeql/codeql-ql/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
let
pkgs = import <nixpkgs> {};
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/0e148322b344eab7c8d52f6e59b0d95ba73fb62e.tar.gz";
pkgs = (import nixpkgs { config = {}; overlays = []; })
in
{
codeql-ql-0_1_0-dev = pkgs.callPackage ./0.0.1-dev.nix {};
Expand Down
3 changes: 2 additions & 1 deletion tooling/codeql/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
let
pkgs = import <nixpkgs> {};
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/0e148322b344eab7c8d52f6e59b0d95ba73fb62e.tar.gz";
pkgs = (import nixpkgs { config = {}; overlays = []; })
in
rec {
ql-extractor-0_0_1 = pkgs.callPackage ./ql-extractor/0.0.1.nix {};
Expand Down
2 changes: 1 addition & 1 deletion tooling/codeql/ql-extractor/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let
pkgs = import <nixpkgs> {};
pkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/0e148322b344eab7c8d52f6e59b0d95ba73fb62e.tar.gz";
in
{
ql-extractor-0_0_1 = pkgs.callPackage ./0.0.1.nix {};
Expand Down

0 comments on commit 29a353a

Please sign in to comment.