tvl-depot/default.nix

29 lines
1.1 KiB
Nix
Raw Normal View History

# 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:
2019-08-16 17:50:50 +02:00
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;
})