about summary refs log blame commit diff
path: root/default.nix
blob: 24d0e02799fbdff9f9895121455b0143a70ce448 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                                                


                            
                                          



                                                         
 

                                                                                 
                                                                     

    


                                                                

                                                                                         
                                                                    
                             
                              
  
# This file sets up the top-level package set by merging all local packages into
# the nixpkgs top-level.
#
# This makes packages accessible via the Nixery instance that is configured to
# use this repository as its nixpkgs source.

let
  localPkgs = super: pkgs: {
    # Local projects should be added here:
    tazjin = {
      blog = import ./services/tazblog { inherit pkgs; };
      gemma = import ./services/gemma { inherit pkgs; };
    };

    # Third-party projects (either vendored or modified from nixpkgs) go here:
    gitAppraise = pkgs.callPackage ./third_party/go/git-appraise/git-appraise {};
    terraform-gcp = pkgs.terraform_0_12.withPlugins(p: [ p.google ]);
  };

  # The pinned commit here is identical to the public nixery.dev
  # version, since popularity data has been generated for that.
  nixpkgsVersion = "88d9f776091896cfe57dc6fbdf246e7d27d5f105";
  nixpkgs = "https://github.com/NixOS/nixpkgs-channels/archive/${nixpkgsVersion}.tar.gz";

in { ... } @ args: import (builtins.fetchTarball nixpkgs) (args // {
    overlays = [ localPkgs ];
    config.allowUnfree = true;
})