]> Git — Sourcephile - julm/julm-nix.git/blob - nixpkgs/overlays/zerobin.nix
nix: format
[julm/julm-nix.git] / nixpkgs / overlays / zerobin.nix
1 _self: super: {
2 haskell = with super.haskell.lib; super.haskell // {
3 packages = super.haskell.packages // {
4 ghc865 = super.haskell.packages.ghc865.extend (_hself: hsuper: {
5 docopt = unmarkBroken hsuper.docopt;
6 zerobin = justStaticExecutables (unmarkBroken hsuper.zerobin);
7 });
8 };
9 };
10 }