about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/freebsd/pkgs/source.nix
blob: 5e31f900e8216e3077eb3a891cf7802388fe1dd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ fetchFromGitHub, sourceData }:

# Using fetchFromGitHub from their mirror because it's a lot faster than their git server
# If you want you could fetchgit from "https://git.FreeBSD.org/src.git" instead.
# The update script still pulls directly from git.freebsd.org
fetchFromGitHub {
  name = "src"; # Want to rename this next rebuild
  owner = "freebsd";
  repo = "freebsd-src";
  inherit (sourceData) rev hash;
}