Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPackages, fetchgit, fetchpatch, perl, buildLinux, ... } @ args:
2
3buildLinux (args // {
4 version = "5.3.2020.04.04";
5 modDirVersion = "5.3.0";
6
7 src = fetchgit {
8 url = "https://evilpiepirate.org/git/bcachefs.git";
9 rev = "a27d7265e75f6d65c2b972ce4ac27abfc153c230";
10 sha256 = "0wnjl4xs7073d5ipcsplv5qpcxb7zpfqd5gqvh3mhqc5j3qn816x";
11 };
12
13 extraConfig = "BCACHEFS_FS m";
14
15 extraMeta = {
16 branch = "master";
17 hydraPlatforms = []; # Should the testing kernels ever be built on Hydra?
18 maintainers = with stdenv.lib.maintainers; [ davidak chiiruno ];
19 platforms = [ "x86_64-linux" ];
20 };
21
22} // (args.argsOverride or {}))