nixpkgs/pkgs
Austin Seipp 26fa60ac55 Refactor grsecurity support.
Nota bene: this probably does not work! Caveat emptor, etc.

This inverts the grsecurity builder, making it much simpler. Instead,
users just give a full description of the type of kernel they want to
build, and the result is an attribute set containing kernel and
kernelPackages results.

Now, in order to build a custom grsecurity kernel, you do something more
like:

    let
      kver  = "4.0.4";
      grver = "3.1-${kver}-201505222222";

      kernel = rec
        { version  = kver;
          localver = "-grsec";
          src      = fetchurl rec {
            name  = "linux-${kver}.tar.xz";
            url   = "mirror://kernel/linux/kernel/v4.x/${name}.tar.xz";
            sha256 = "1j5l87z6gd05cqzg680id0x1nk38kd6sjffd2lifl0fz5k6iqr9h";
        };
      };

      patches =
        [ fetchurl rec {
            name   = "grsecurity-${grver}.patch";
            url    = "https://grsecurity.net/test/grsecurity-${grver}.patch";
            sha256 = "0ampby10y3kr36f7rvzm5fdk9f2gcfmcdgkzf67b5kj78y52ypfz";
          }
        ];

      customGrsecKern = customGrsecKernelPackages { inherit kernel patches; };
    in
    {
      ...
      boot.kernelPackages = customGrsecKern.kernelPackages;
    }

Which is far more flexible and easier to think about; plus, it gives
full control over the kernel localver and modDirVer, as well as support
for other patches (because you may have other patches to apply on-top of
grsec, or you may bundle grsec with some other distribution, and still
need the builder support.) It also gives you full control of the kernel
tarball, in case you want to use e.g. libre-linux.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-05-25 10:58:26 -05:00
..
applications Merge pull request #7365 from k0ral/synergy 2015-04-13 22:08:07 +03:00
build-support Refactor grsecurity support. 2015-05-25 10:58:26 -05:00
data Remove mention of monospace from 'fira'. 2015-04-10 23:40:47 +02:00
desktops e19/rage: fixed sha 2015-04-09 18:40:07 +03:00
development libksba: 1.3.2 -> 1.3.3 2015-04-13 18:03:01 -07:00
games Merge pull request #7348 from dezgeg/bastet 2015-04-13 11:49:45 +02:00
misc cups-browsed: build with Avahi 2015-04-13 23:21:44 +03:00
os-specific Refactor grsecurity support. 2015-05-25 10:58:26 -05:00
servers nixpkgs: openresty 1.7.7.1 -> 1.7.10.1 2015-04-12 11:35:37 -05:00
shells new package: es 2015-04-11 12:22:43 +08:00
stdenv
test
tools ceph: 0.94 -> 0.94.1 2015-04-13 18:05:31 -07:00
top-level nixpkgs: stop building grsec packages 2015-04-13 20:06:49 -05:00