Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 22 lines 652 B view raw
1{ stdenv, buildPackages, fetchgit, perl, buildLinux, ... } @ args: 2 3buildLinux (args // rec { 4 version = "4.20.2019.02.20"; 5 modDirVersion = "4.20.0"; 6 7 src = fetchgit { 8 url = "https://evilpiepirate.org/git/bcachefs.git"; 9 rev = "2d1aed5672ad55f86544cb5352560d5395012136"; 10 sha256 = "0b4swx0z36y4gglkjwxn3x1q0wknv4k2lbprhbing3ms0d45z9f2"; 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 {}))