aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs.nix
blob: e4d0588563da6833f717e378e175c371577d421d (plain)
1
2
3
4
5
6
7
8
9
# A nixpkgs instance that is grabbed from the pinned nixpkgs commit in the lock file
# This is useful to avoid using channels when using legacy nix commands
let
  lock = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.nixpkgs.locked;
in
  import (fetchTarball {
    url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz";
    sha256 = lock.narHash;
  })