mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
11 lines
341 B
Nix
11 lines
341 B
Nix
{ nixpkgs ? <nixpkgs>, self, super, ... }:
|
|
|
|
let
|
|
pkgs = import nixpkgs { };
|
|
callPackage = pkgs.lib.callPackageWith (pkgs // newpkgs);
|
|
newpkgs = {
|
|
linuxPackagesFor = kernel: (super.linuxPackagesFor kernel).extend (_: ksuper: {
|
|
vendor-reset = (callPackage ./vendor-reset {kernel = ksuper.kernel;}).out;
|
|
});
|
|
};
|
|
in newpkgs
|