Skip to content
Snippets Groups Projects
Commit f1599af0 authored by Ben Gamari's avatar Ben Gamari :turtle:
Browse files

nix: Rip out brokenPackages

parent 4e4093f7
No related branches found
No related tags found
No related merge requests found
......@@ -81,12 +81,7 @@ let
parts = builtins.match "([a-zA-Z0-9-]+)-.*" patchFile;
pkgName = builtins.elemAt parts 0;
in lib.nameValuePair pkgName haskellPackages."${pkgName}";
brokenPackages = [
# vty isn't applied to its terminfo argument for some reason and I
# can't convinced vty.override to apply it.
"vty"
];
in builtins.removeAttrs (lib.mapAttrs' toPackageAttr (builtins.readDir ../patches)) brokenPackages;
in lib.mapAttrs' toPackageAttr (builtins.readDir ../patches);
inherit (nixpkgs) lib;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment