2019-11-29 10:20:08 +00:00
|
|
|
# This file controls the pinned version of nixpkgs we use for our Nix environment
|
|
|
|
# as well as which versions of package we use, including their overrides.
|
|
|
|
{ config ? { } }:
|
|
|
|
|
|
|
|
let
|
2020-04-26 12:40:06 +00:00
|
|
|
inherit (import <nixpkgs> { }) fetchFromGitHub;
|
2020-04-15 11:12:56 +00:00
|
|
|
|
|
|
|
# For testing local version of nixpkgs
|
|
|
|
#nixpkgsSrc = (import <nixpkgs> { }).lib.cleanSource "/home/jakubgs/work/nixpkgs";
|
|
|
|
|
2020-08-27 12:20:39 +00:00
|
|
|
# We follow the master branch of official nixpkgs.
|
2020-04-15 11:12:56 +00:00
|
|
|
nixpkgsSrc = fetchFromGitHub {
|
2019-11-29 10:20:08 +00:00
|
|
|
name = "nixpkgs-source";
|
2020-08-27 12:20:39 +00:00
|
|
|
owner = "NixOS";
|
2019-11-29 10:20:08 +00:00
|
|
|
repo = "nixpkgs";
|
2021-04-12 14:07:55 +00:00
|
|
|
rev = "76f53eef48cc6c340ed063c117aac75c4652627c";
|
|
|
|
sha256 = "0a2wn0ryq0ngd3ybc3ag70dp9z1x4w1jgy6qr4dzfnzbnn3s5246";
|
2019-11-29 10:20:08 +00:00
|
|
|
# To get the compressed Nix sha256, use:
|
|
|
|
# nix-prefetch-url --unpack https://github.com/${ORG}/nixpkgs/archive/${REV}.tar.gz
|
|
|
|
};
|
2020-04-15 11:12:56 +00:00
|
|
|
|
2020-06-03 19:47:01 +00:00
|
|
|
# Status specific configuration defaults
|
|
|
|
defaultConfig = import ./config.nix;
|
|
|
|
|
2020-04-26 12:40:06 +00:00
|
|
|
# Override some packages and utilities
|
|
|
|
pkgsOverlay = import ./overlay.nix;
|
2019-11-29 10:20:08 +00:00
|
|
|
in
|
2020-04-26 12:40:06 +00:00
|
|
|
# import nixpkgs with a config override
|
|
|
|
(import nixpkgsSrc) {
|
|
|
|
config = defaultConfig // config;
|
|
|
|
overlays = [ pkgsOverlay ];
|
|
|
|
}
|