Remove unused nixpkgs overlay

That nixpkgs overlay was used to inject a patched libglvnd. We're not
using that patch anymore, there's no reason to keep this overlay
around.
This commit is contained in:
Félix Baylac Jacqué 2022-12-22 10:09:08 +01:00
parent eb782d3fd5
commit 09fda6b9bd
No known key found for this signature in database
GPG Key ID: EFD315F31848DBA4
2 changed files with 0 additions and 13 deletions

View File

@ -19,8 +19,6 @@
{
defaultPackage = forAllSystems (system: import ./default.nix { pkgs = pkgs system; });
overlays.default = import ./overlays/nixpkgs.nix;
legacyPackages = forAllSystems (system: (pkgs system));
devShell = forAllSystems (system:

View File

@ -1,11 +0,0 @@
self: super:
{
libglvnd = super.libglvnd.overrideAttrs (old: {
src = super.fetchFromGitHub {
owner = "NinjaTrappeur";
repo = "libglvnd";
rev = "f4dff011f78ecd5a69871d4a8ddf3c742de5f621";
sha256 = "sha256-57awDiR9DaFTGe8J4ed89Xm3Fc4/OM6qflsuHqx9mxE=";
};
});
}