Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

haskell: failure building hoogle env #71900

Closed
v217 opened this issue Oct 24, 2019 · 7 comments
Closed

haskell: failure building hoogle env #71900

v217 opened this issue Oct 24, 2019 · 7 comments

Comments

@v217
Copy link

v217 commented Oct 24, 2019

I followed the guide
https://nixos.org/nixpkgs/manual/#how-to-install-a-compiler-with-libraries-hoogle-and-documentation-indexes

and got this error

error: removing extended attribute 'btrfs.compression' from '/nix/store/2jfcllbzmlg37dm57bhz6kbar3ajvrm7-hoogle-local-0.1/share/doc/hoogle/hslogo-16.png': Permission denied

or the full output after running nix-env -f "<nixpkgs>" -iA myHaskellEnv:

replacing old 'ghc-8.6.5'
installing 'ghc-8.6.5-with-packages'
these derivations will be built:
  /nix/store/r2sx0maxhhyhvyxkyaxls6kvsh2hb0yk-hoogle-local-0.1.drv
  /nix/store/4b9j40v9vz0b15pa1ypbd2qi4dfzh2a2-ghc-8.6.5-with-packages.drv
building '/nix/store/r2sx0maxhhyhvyxkyaxls6kvsh2hb0yk-hoogle-local-0.1.drv'...
importing builtin packages
importing other packages
building hoogle database
Starting generate
[1/83] Cabal... 1.89s
[9/83] base... 1.49s      
[15/83] containers... 0.77s
[30/83] ghc... 5.22s                              
[35/83] ghc-prim... 0.82s   
[55/83] process-extras... 0.04s
[74/83] text... 0.19s            
[81/83] vector... 0.57s             
[83/83] zlib... 0.08s 
Found 25 warnings when processing items

Reordering items... 0.05s
Writing tags... 0.37s
Writing names... 0.16s
Writing types... 2.10s
Took 18.33s
building haddock index
finishing up
error: removing extended attribute 'btrfs.compression' from '/nix/store/2jfcllbzmlg37dm57bhz6kbar3ajvrm7-hoogle-local-0.1/share/doc/hoogle/hslogo-16.png': Permission denied

I use nixpkgs 19.09 on ubuntu.

@FRidh FRidh changed the title error: removing extended attribute 'btrfs.compression' from '/nix/store/2jfcllbzmlg37dm57bhz6kbar3ajvrm7-hoogle-local-0.1/share/doc/hoogle/hslogo-16.png': Permission denied haskell: failure building hoogle env Oct 24, 2019
@cdepillabout
Copy link
Member

@v217 Could you share the myHaskellEnv expression you're using?

I can try running it on my machine and seeing if I get an error. If I don't, it may be the issue you've linked to.

@v217
Copy link
Author

v217 commented Oct 25, 2019

Sure, my /home/v/.config/nixpkgs/config.nix is:

{
  packageOverrides = super: let self = super.pkgs; in
  {
    myHaskellEnv = self.haskellPackages.ghcWithHoogle
                     (haskellPackages: with haskellPackages; [
                       shh shh-extras Glob ghci-pretty                       
                     ]);
  };
}

The /nix folder is on the root partition which is formatted as btrfs with zstd compression enabled.
I use Ubuntu 19.10, here is the entry from the /etc/fstab:
UUID=5f7f9ccf-2282-415c-a8f0-c8ec13104b14 / btrfs defaults,ssd,compress-force,compress=zstd,subvol=@,autodefrag 0 1
I also have ghcide installed. Thanks!

@cdepillabout
Copy link
Member

@v217 I don't think that could be the entire expression, since shh is marked broken in 19.09:

$ cd /some/path/to/nixpkgs
$ git checkout release-19.09
$ git pull
...
$ nix-build -E 'with import ./. {}; haskellPackages.ghcWithHoogle (haskellPackages: with haskellPackages; [ shh shh-extras Glob ghci-pretty ])'
error: Package ‘shh-0.7.0.5’ in /home/illabout/git/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix:211203 is marked as broken, refusing to evaluate.

a) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.

(use '--show-trace' to show detailed location information)

However, if I try the same expression without shh, it appears to work:

$ nix-build -E 'with import <nixpkgs> {}; haskellPackages.ghcWithHoogle (haskellPackages: with haskellPackages; [ Glob ghci-pretty ])'
...
/nix/store/n3rp2irigv3z893na1b2m5xap15jj4ak-ghc-8.6.5-with-packages

This seems to indicate that this is not a Haskell problem, but instead possibly #29778, or some other problem.

Might want to expand your comment here with more information (so that people don't have to read through this issue to figure out that this is not actually a Haskell-related problem): #29778 (comment)

@v217
Copy link
Author

v217 commented Oct 25, 2019

OK I tried to reinstall everything too. And I did run into the same error with shh? Apparently I changed something since the last install. ghcide uses an alternative haskell environment haskell.nix. So I try to use haskell.nix. Because ghcide allready installs all the dependencies I need eg. ghci-pretty hoogle (except shh ...) . Do you know how to modify my /home/v/.config/nixpkgs/config.nix to reuse as much of the haskell.nix toolchain?

@v217
Copy link
Author

v217 commented Oct 25, 2019

No I still get the same error with the unstable https://nixos.org/channels/nixpkgs-unstable nixpkgs channel as well!
This time I used this /home/v/.config/nixpkgs/config.nix:

{
  haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz) {};
  packageOverrides = super: let self = super.pkgs; in
  {
    myHaskellEnv = self.haskellPackages.ghcWithHoogle
                     (haskellPackages: with haskellPackages; [
                       # libraries
                       # shh shh-extras Glob
                       ghci-pretty
                       # tools                       
                     ]);
    withHoogle = true;
  };
}

and did run again nix-env -f "<nixpkgs>" -iA myHaskellEnv in a pristine, completely new and empty nix environment (just after running curl https://nixos.org/nix/install | sh and deletion of all nix files eg. rm -R ~/.nix*; sudo rm -Rf /nix/* ).
And I did get the same error again:
Just the error:

error: removing extended attribute 'btrfs.compression' from '/nix/store/snqbw3z7nzg4nm1sq0mcxqbj8v7lvxs7-hoogle-local-0.1/share/doc/hoogle/hslogo-16.png': Permission denied

or here the full log:

installing 'ghc-8.6.5-with-packages'
these derivations will be built:
  /nix/store/yz6147g037vq7zl968ibp2xd2j6v1c3d-hoogle-local-0.1.drv
  /nix/store/gw6bax82g99787fkzp6jpfrz2l76wblh-ghc-8.6.5-with-packages.drv
these paths will be fetched (274.80 MiB download, 3173.03 MiB unpacked):
  /nix/store/01b9gpkk83karr2ps4gfgw89qj770a71-entropy-0.4.1.5
  /nix/store/032zf1cn5fmnfhp5xsw99igb5gi20rk4-acl-2.2.53
  /nix/store/04cnwapgz40q7shxqbspi98r41i5apr6-http-client-tls-0.3.5.3
  /nix/store/05mpgbw5sq1ywh8n04lpncp0smnnbc9h-socks-0.6.1
  /nix/store/06pmgw33pwz55l3hfcjxkmdd29kdfj8q-uniplate-1.6.12
  /nix/store/0cxrygiwcssib27sgff1fckcjn5mwwmb-primitive-0.6.4.0
  /nix/store/0dmvwar8b2i9jf031hcrdd4k8a103f37-stdenv-linux
  /nix/store/0gfrpwlpmdv4m4kynkfvf8pv6w79viyl-easy-file-0.2.2-doc
  /nix/store/0sa6gjkdmnlc5ji8kq2wllzswfzyxa7v-base-orphans-0.8.1
  /nix/store/0v6gwa472i4i9xfr183mvz7x4a0fqhc4-utility-ht-0.0.14
  /nix/store/0zhxrdpahllpcnggjf2cg60v8h2bq978-js-jquery-3.3.1-doc
  /nix/store/10yp9qb0qjzlv85351q67q4fks6aknkg-bsb-http-chunked-0.0.0.4
  /nix/store/14yv9rsqryayfjgfgp5jjb11ns3siarh-split-0.2.3.3-doc
  /nix/store/1dpgp88bcgc661yg2snfx0zyha760b9g-network-uri-2.6.1.0
  /nix/store/1n520657qdfsypvx0ascdzpasckinbjd-async-2.2.2-doc
  /nix/store/1pqpczna5ipwxm3jjv6f9g3d6fpdchm3-gnumake-4.2.1
  /nix/store/1q032vm84kfccch3ihlf5f9bs2vz7ass-word8-0.1.3
  /nix/store/1vbkl8a48xxqqdrsvnx12q6670pqh41m-haskell-src-1.0.3.0
  /nix/store/1yqnlfd4n2vbdjqll3mgv478gh4hy5xq-regex-compat-0.95.1
  /nix/store/21yny3cdfnxw09s0gpazajan77jx98ng-base-compat-0.10.5-doc
  /nix/store/2357gw86330wvxw7p25zgazaxvvag46v-psqueues-0.2.7.2
  /nix/store/26wv3m1x85z3q3kxkp9qvgnqmgck5v2p-scientific-0.3.6.2
  /nix/store/29lirk00l98x4a1aikzwg9zqvnfkfs1c-storable-tuple-0.0.3.3
  /nix/store/2dr5qjibqc0y3d1pmhmr89bdi863hla7-conduit-extra-1.3.4
  /nix/store/2gg7a91c98ga07fvyyp2k1bvrds213jr-coreutils-8.31
  /nix/store/2hwqz955r1gazfikrkcls64ny99v0pd8-ncurses-6.1-20190112
  /nix/store/2nfxh2x4y1a4419p5kibkg2pc7363bsx-http-client-tls-0.3.5.3-doc
  /nix/store/2w2a81ypxhwchc2sqa99njjhq30c1rm4-blaze-html-0.9.1.2-doc
  /nix/store/3d3hajh3pz87xczq3zgx93mnqj6hhqbx-warp-3.2.28-doc
  /nix/store/3iadrr3qpq1c6dn63v51vk5iaf3pzfvs-pureMD5-2.1.3-doc
  /nix/store/3kiay2f9ash2qixqslkgrz55zbx533kd-http-client-0.6.4-doc
  /nix/store/3vm087hrh011b9gzdlahf72sr8lcbpdr-js-jquery-3.3.1-data
  /nix/store/3zmbbkvxkgsp6z0qhnpdaaz7kkksq3m7-zlib-1.2.11
  /nix/store/40ycaiwd64kjxc03lvw6imb3biwybcl3-gnused-4.7
  /nix/store/4968yxpilaaabd90w9cmsk774xifgxhk-semigroups-0.18.5
  /nix/store/4j3271q66pc04jfqq0gccbp6qxp3mga6-regex-posix-0.95.2
  /nix/store/4jha1b1i5fvs4c561xfwpq287fx02bnj-http-conduit-2.3.7.3-doc
  /nix/store/4kjfb5zf2mcsbycx0dvwsdrb2aa9yjg1-crypto-api-0.13.3-doc
  /nix/store/4mcyrbbjnj628j8likqwcgds3w23y35w-streaming-commons-0.2.1.1
  /nix/store/4q2qm7md2vsrxz1mh1iv63paf4if31rq-generic-deriving-1.12.4-doc
  /nix/store/4wfdiiyjasv9dqqhcw7f2kzra6a0liaf-gmp-6.1.2
  /nix/store/4yx33smahbyij8n0yisbrv1hhrl06j0g-conduit-1.3.1.1-doc
  /nix/store/53kc1c6q5g7s8yxrzmasnmrgsbkhhyrc-mono-traversable-1.0.13.0
  /nix/store/56a87ffc50k32yniiccb7ggmmsx4k61h-wai-logger-2.3.5
  /nix/store/57aljkzw3d6i29iyjr54xaavascb71hx-auto-update-0.1.6-doc
  /nix/store/58wl6lcbwdxnakgpl4h7kz2m9rcb3ivq-integer-logarithms-1.0.3-doc
  /nix/store/5ad4bg7737z2acywz0gzp2amk3l54vz1-ipprint-0.6
  /nix/store/5arvwqc1lh0b0b1jcfapdlrv5lqd51wm-th-abstraction-0.3.1.0-doc
  /nix/store/5c8qr63xbag3r109l7jmq02fpi0am3qq-byteorder-1.0.4-doc
  /nix/store/5jzm1bdymi8knp5wf3lvrkmi623s3i6v-zlib-0.6.2.1-doc
  /nix/store/5kaansc8gafd9zqj3dk95r0kdld240a9-foundation-0.0.25
  /nix/store/5mrwwnhgnx0yd7yq94yaqwgvbxksq9z0-ListLike-4.6.2-doc
  /nix/store/5n2ixypldaflm0s2mmkgq4s6rdicdixb-unliftio-core-0.1.2.0
  /nix/store/5r8vy3fhv8kw1lmm188f62z80kzz5j62-haskell-src-exts-1.21.1-doc
  /nix/store/5ya2g3dnihp9qkyb9yx98cfv303l25bv-tls-1.4.1-doc
  /nix/store/5yaqs4pi8qg7474pdgrf0irxw693piic-blaze-html-0.9.1.2
  /nix/store/5zvkhxr8g3l16w9jhxbv6y4gpsvffbvk-haskell-src-exts-1.21.1
  /nix/store/61bi269vpmjrsc73mhb5y0qvsi4s3igg-time-manager-0.0.0-doc
  /nix/store/667j9cy9yrdgcqixqhlw93c6vrwh9zpj-zlib-0.6.2.1
  /nix/store/673lnp1rmv0y4c8nmyxsixdigvkky7nj-dlist-0.8.0.7-doc
  /nix/store/6bbm9vhmqd07y33mzidn21lhh0z7sq7y-crypto-api-0.13.3
  /nix/store/6c2wg28bg40nqkcqjy3i62a2awzzrzg0-data-default-instances-containers-0.0.1
  /nix/store/6dp10lhhcih7xwgngfzf300sgq784kxj-tar-0.5.1.1-doc
  /nix/store/6hj1q09pjfn0ykaic3cmx5dyv025kxm3-semigroups-0.18.5-doc
  /nix/store/6i8r7zihg626i0ghihsinhg78j1zdjdd-iproute-1.7.7-doc
  /nix/store/6l6sjj2xy71194ppxhfz56chqdi68hva-old-time-1.1.0.3-doc
  /nix/store/6qr224xh5adhvfmhmy78srarcv5g172h-asn1-parse-0.9.5
  /nix/store/6w3qbqwbiih7ayr5vd9l996fr0r97azm-tls-session-manager-0.0.3
  /nix/store/6w5mcpc79a66yg551i3sjy4q5b8d5kxp-regex-posix-0.95.2-doc
  /nix/store/6yn52gzmqj8ig8gdzrqrsmxpw4w0z8s5-tls-session-manager-0.0.3-doc
  /nix/store/6ywwxvni787whsig4xznq6fs4dp1i6pd-syb-0.7.1
  /nix/store/700clmjw79d5xkpck3n2v9p932lg2nb6-splitmix-0.0.3
  /nix/store/7688s3f435gqjrzc51cibxcc92rrmgjk-bzip2-1.0.6.0.1-dev
  /nix/store/79wg08x2ydx2jmryz7gihb5kccgi8y53-storable-record-0.0.4
  /nix/store/7d1ijbsn67d5j2qqgh7s6fcnhsj98s4p-time-manager-0.0.0
  /nix/store/7p357sny6bm5xzxzdi4r4dkk38fbgy1w-appar-0.1.8-doc
  /nix/store/7p80qrg8w5m372px2g2w0mhxr65xgz55-exceptions-0.10.3-doc
  /nix/store/7rxancn6qyws1ssha4s2i64wjqiffvb8-hashable-1.2.7.0-doc
  /nix/store/7w24lsjs00djgnkqwai6zk7px1hllkpa-http-date-0.0.8-doc
  /nix/store/8a2sips98s5y4ky68h6z85i034s8hmj1-asn1-types-0.3.3
  /nix/store/8a4n8mkmy1hb9rhvn3xhj8c6hmgqmfys-unordered-containers-0.2.10.0-doc
  /nix/store/8gfkl5xfynq1qr9j0zfc4zfki9sf74s1-iproute-1.7.7
  /nix/store/8j3xwi0i400a79d7dz9885sl0w4jy3ib-hoogle-5.0.17.11-doc
  /nix/store/8jqkrvagyw1yipzszripvh387npqrw58-uuid-types-1.0.3
  /nix/store/8mm525lzg3ii4kgf39vnz5hv75gwb651-x509-store-1.6.7
  /nix/store/8pizvd0f6f5gg8yz9a9168vq42dgcd84-blaze-builder-0.4.1.0
  /nix/store/8q91gdkh9wc86bs8a0716blril4hy9md-data-default-class-0.1.2.0
  /nix/store/8y3a1jl49s8w309md8p632jnlpjzlp14-stdenv-linux
  /nix/store/8z6j7rw3hll837a9dvzp9vx12nvjxhgk-libffi-3.2.1
  /nix/store/939gkqx4mbpf5df0s4vx57ii3n79ppm9-perl-5.30.0
  /nix/store/95r8f78xbqcxz1qwayh633nnjsv0ndpg-js-jquery-3.3.1
  /nix/store/9bjgxdl1p3g70z450mriyzk5b5p2jhnf-fmlist-0.9.3-doc
  /nix/store/9f0w9yiz6rl6s2nq6f9w3phgb9szrgz6-mmap-0.5.9-doc
  /nix/store/9f9y8w6xhj96kbyzzknf2xqnyik7lja0-tagged-0.8.6-doc
  /nix/store/9wl4rbczxxa5fzc9j3dsar3lcn0p9bif-data-default-instances-old-locale-0.0.1-doc
  /nix/store/9z7dvjd62i6h5damzpghhwvz63b4pz7z-utf8-string-1.0.1.1-doc
  /nix/store/a3a1drghlxrh19s5y27vi177gq5wpnlq-blaze-builder-0.4.1.0-doc
  /nix/store/a3r8jmy5b9xxah4fiq4r2gf940l8b20w-byteorder-1.0.4
  /nix/store/aa9ls0hs2mb56fb1vdw4g50pdsf71wqj-data-default-class-0.1.2.0-doc
  /nix/store/aamcmi3j4ca3crdpfafwhlmdnngizpq8-cereal-0.5.8.1-doc
  /nix/store/ab40330hbfhs6y70h5dk7hfhf1hj9dbd-blaze-markup-0.8.2.3
  /nix/store/aksfwy8c735m0q1dcmi1clb4zjg2nxwr-HUnit-1.6.0.0
  /nix/store/avapyam3axpln28p9dp76ks7cx5fwpba-http2-1.6.5
  /nix/store/b7iwrf7364567j9shcbqcia35alsgh29-extra-1.6.18-doc
  /nix/store/b8l1fmc90m4nv7g9bh4h7rn25mi1i3yk-time-compat-1.9.2.2
  /nix/store/bdrv385c9jmap5n4852r010b24m5544k-conduit-extra-1.3.4-doc
  /nix/store/bgh3bgq6fsjpv5slz4igx24lrg5bypix-network-2.8.0.1
  /nix/store/bhmlp41xlcdi9fdsci9acjbxdl1h5bzv-patch-2.7.6
  /nix/store/bhngps8y3sf2hdfkbi16bk2ya3k67rkq-gcc-8.3.0
  /nix/store/bka8pxk1i0yj6njfd99w8zhjk1x3wcxr-binutils-wrapper-2.31.1
  /nix/store/bmbp1dk75cn7f921paparvbl2kxsmh8j-typed-process-0.2.6.0
  /nix/store/bsxfffw502s77yfif3d8p9dmjs7zxy0w-unix-time-0.4.7-doc
  /nix/store/c3q7sb1lcvrx00d92jdlj3jprs6znbcq-attoparsec-0.13.2.3-doc
  /nix/store/c4bv0jadvwxj52lwkdi4pcaadicql0jw-typed-process-0.2.6.0-doc
  /nix/store/cdq8h2p1qhy8fnxvw4jpwvjk5x6mpsi0-x509-validation-1.6.11
  /nix/store/cg0c1z5ysnzg42sxzr1irfdq2r7x4f1s-http2-1.6.5-doc
  /nix/store/cnij4yyvknw66igil49fblp91j8ya3hf-glibc-2.27-bin
  /nix/store/criqgw6g77kvrrcir3ql94j881iv72x9-appar-0.1.8
  /nix/store/crx6hbcjsv3ffnz169hvamlykg2svd8a-socks-0.6.1-doc
  /nix/store/d51cvzp1pay7vjfkn9laksmx0420b16y-http-date-0.0.8
  /nix/store/d8c2jwqykhs1l5c0qgnr7k87zyv3hn92-psqueues-0.2.7.2-doc
  /nix/store/dbwvxsbpn6h3lr3qikk4vnf4ghbmfxsk-x509-store-1.6.7-doc
  /nix/store/dfyx3cdkxz4ixzr8df74akjyancabmwc-fast-logger-2.4.17-doc
  /nix/store/dkbzz8zc19n0sy2gw26gj6r9dyadg7sj-process-extras-0.7.4
  /nix/store/drhly1wf8vzn3sli1hx3p9dgxf3ypz7a-hook
  /nix/store/dxh741mlcayyfarj2l4vr6zxlxh30m2g-x509-validation-1.6.11-doc
  /nix/store/dzl4b5lkjdfbyq6lq950rkzcl214pcjg-Unixutils-1.54.1-doc
  /nix/store/f731s3bkplzgh4xc324n42fp0m11vv75-unix-time-0.4.7
  /nix/store/f8ndal66ql6pa4ync3k0hi8mw9qdmq2s-data-default-0.7.1.1-doc
  /nix/store/favyqw7d9394c71msidckivbqrirqpz8-QuickCheck-2.13.2
  /nix/store/fdz7jkkccripgjfdljw2bv8jymxrswn1-patchelf-0.9
  /nix/store/fh28qrrarhk48vsn3fkjiypl3cz3pmrr-vector-algorithms-0.8.0.1-doc
  /nix/store/fikq77j3bnf4xbs1kqvi6nlghd418dqy-HUnit-1.6.0.0-doc
  /nix/store/fm3h48pjnb85c7hbmxcbhbgjc4ficrm9-x509-system-1.6.6
  /nix/store/fp2365jl3zq4wj83wv8a853ppbdkpb6a-transformers-compat-0.6.5-doc
  /nix/store/fy3mclr76n7qdkcfsd6v1c7ffyasgl3i-network-byte-order-0.1.1.1
  /nix/store/fy8b0k32alkari5wq15gx74h5gfzp79g-basement-0.0.11
  /nix/store/g5zfcviyihz5v17jmcphqd99cq9g59ah-blaze-markup-0.8.2.3-doc
  /nix/store/gfxidlnkan9wk5dph95hl0mb0j4sh7fv-attr-2.4.48
  /nix/store/giln468h1mxj0dfb27l60qjj3bw9rbma-scientific-0.3.6.2-doc
  /nix/store/gr5kzhcf8rkg83zcbdxk3j4an0ayvh6h-transformers-compat-0.6.5
  /nix/store/graardhvblpa8in63qrgxf5ah6mnlfss-clock-0.8-doc
  /nix/store/gsycyhjvgk9j64p6bdxvryipagcm2glp-memory-0.14.18-doc
  /nix/store/gx99ppinssyvvbjhcdc5brpz41z283i4-hscolour-1.24.4
  /nix/store/gxirb8si64adlvr6jcrdr5m7bwbk1spj-basement-0.0.11-doc
  /nix/store/gxjsylf3cz94fk1hpx39x2garh7s1v9j-ghc-8.6.5
  /nix/store/h333v139car5yfw31dh34liz2bv58w18-data-default-instances-old-locale-0.0.1
  /nix/store/h8smr6xfv6kj6dkaw9kh4anmzffc9d43-mmap-0.5.9
  /nix/store/hcbak1f4ljz2814jff2sm4vvlqfdrrq2-vault-0.3.1.3-doc
  /nix/store/hcg7dl0zd3zpxyzni470d0rbyh6pip69-clock-0.8
  /nix/store/hnhh0cm6dadd29qi9i59jrwp28bsvzvg-old-locale-1.0.0.7-doc
  /nix/store/hnp72ygssavd526rp7qk3yjylyc2klcw-glibc-2.27
  /nix/store/hr6k3zdrkr76r06h00rd1pdh9apafs6d-mime-types-0.1.0.9
  /nix/store/hy2xydrgwfai12b3vqjrh4vyai9vg7z1-lndir-1.0.3
  /nix/store/i8kfh2sd9qki7rv8slxvd44303nni730-asn1-encoding-0.9.6
  /nix/store/iclkjm6j7r51xyddiprbd88qqbrlfp4a-regex-tdfa-1.2.3.2
  /nix/store/img4b8hdms8yjjc42ji9lr5jlkxrkdvl-bzip2-1.0.6.0.1
  /nix/store/imhivhr696jxv603jzh7rkji6z7p23db-resourcet-1.2.2
  /nix/store/imxf8ihn1xpb5fchvn18wxhdayb1d3xb-case-insensitive-1.2.0.11-doc
  /nix/store/izqc8dhr3d3h5i0b8nqcv63jc3jclcdj-primitive-0.6.4.0-doc
  /nix/store/j1hddlij6dhdzhqbr0hb89y56gicdy28-memory-0.14.18
  /nix/store/j20vh8hfnnwnj6sldldg1v12hb4niya5-warp-tls-3.2.8
  /nix/store/j4cl89f7wm7wa4iiss9486ab8qni9a4p-network-byte-order-0.1.1.1-doc
  /nix/store/j4m0d9mgwqvb84fx6ln3nl7zj19sq5bs-wai-3.2.2.1
  /nix/store/j645z05ng0971b9r48j8sx0vrfqg94ga-hoogle-5.0.17.11-data
  /nix/store/j6p5nar8kd5c7j7vwqb7kyyspq8wvf8r-vector-algorithms-0.8.0.1
  /nix/store/j9kgw0kpscm1wmhnzmxqp40sxdq0wg7f-fmlist-0.9.3
  /nix/store/jd1dc9jj7n97j7agb2xc0pfw8ny10w2i-unix-compat-0.5.2-doc
  /nix/store/jfv9ny5p2ral57p9a2nxsjimgc1y4p9s-x509-system-1.6.6-doc
  /nix/store/jhy3q7nbr341blq7g5vbhb1pddlvl6vw-tagged-0.8.6
  /nix/store/jiy2fgs67dk1q7sk106fd1zp13yiqvwa-ed-1.15
  /nix/store/jjvg603qhqh0hgf06xi48g0fv4fnszrb-regex-base-0.93.2
  /nix/store/jk4gjqnqnh2y79hqkrhbldr4lrlp1ga0-tar-0.5.1.1
  /nix/store/jk7z5kxavwqp4y74pa0yq0fk5vmw5wsx-bzlib-0.5.0.5-doc
  /nix/store/jkpn22y84gyglhrldfw6xsq393y3d6li-ghc-8.6.5-doc
  /nix/store/jlg12h8is9v29xklh9zfcff9jsnxy8i7-integer-logarithms-1.0.3
  /nix/store/jmqhmxj8ihzbdszi5rc746x09gfaidfl-hook
  /nix/store/jsj9dga7cyralwpqgzf7mv48c72mzg4i-hourglass-0.2.12
  /nix/store/jw6l5ypblb10d8awazq3ni5gfma7439a-xz-5.2.4-bin
  /nix/store/jxs85rvhx70fsj20sz3qm2j4jflm2b79-cryptonite-0.25
  /nix/store/jy6zl5dkw5rcjczm1arjqxz95l9d40i7-binutils-2.31.1
  /nix/store/k2h6n4d51r94bfam0imxl4r7j24vj24z-entropy-0.4.1.5-doc
  /nix/store/k9wlyqmm17zsirbx7ayhl77zlb4y2k49-uuid-types-1.0.3-doc
  /nix/store/kh264m93bw1ch80yr69cn3hsd5f57p6w-cookie-0.4.4
  /nix/store/kkwbhidblm9kffqih3yiyhwlrmg7n57b-generic-deriving-1.12.4
  /nix/store/kws9d754210q15fzxi5gggkz167k48wm-regex-tdfa-1.2.3.2-doc
  /nix/store/kxjswmavpq024sn00b1i2h17gyl9pqkl-http-client-0.6.4
  /nix/store/l2af0lnsx0x7ghd92g58ycdzhg0ivkws-linux-headers-4.19.16
  /nix/store/lcbmpgxk09qf66sr8iv1as5g09ll14db-network-uri-2.6.1.0-doc
  /nix/store/lhzja4kfmxi8wakmdhdpk3kzjbja7mr8-vault-0.3.1.3
  /nix/store/li6k0fbjmca4al6i9vx459bklp69jw3j-storable-tuple-0.0.3.3-doc
  /nix/store/liqysa6kqbj8dbn1iapl3kns8rnix4s6-call-stack-0.1.0
  /nix/store/ljc84fxk8v7wdfyc3y7zr17lz76d5asl-vector-0.12.0.3
  /nix/store/lkaiz48z6zzq71k5lg06fd72mhrs334c-asn1-types-0.3.3-doc
  /nix/store/lq418gz5p0xdbymq8wsw0914gi364l61-utf8-string-1.0.1.1
  /nix/store/lxqvks65sqa9c3j4s3jccnr7f1f47hz5-data-default-0.7.1.1
  /nix/store/m03f3v2brc581gzrdnc22apgfbiglbb1-gawk-5.0.1
  /nix/store/m1bdhnjh7sg8hmb7whad6qarnlm3670j-random-1.1
  /nix/store/m2lda1sv3pvx3263xa5mc36qc5dfkhkz-hoogle-5.0.17.11
  /nix/store/m48mayi9siabcix556g1pcccsy3g80kn-glibc-2.27-dev
  /nix/store/m6sd7idwcg4xy51n9ssk0pl50qf4wpra-easy-file-0.2.2
  /nix/store/m9ad1h95v1bp687kinx7yq8w1fkr9ia6-zlib-1.2.11-dev
  /nix/store/mcyrl0hkx20imaxrqim92yp5pbp02n6s-pcre-8.43
  /nix/store/mgxjcmksp7kd851bcc6cw6fz5cc94gs9-unix-compat-0.5.2
  /nix/store/ml4j22fvn6xkkf9cffc3l4fjw1wmm1yx-js-flot-0.8.3
  /nix/store/mngp6zcp2ihl32knnnwkx2q5cgkp7yd2-pem-0.2.4
  /nix/store/ms0jhsz2sgl9zqrjcdza1zlgqwmq5pn7-sr-extra-1.46.3.2-doc
  /nix/store/mw091xrabqva47xbqmicc3npl0lvlrrf-process-extras-0.7.4-doc
  /nix/store/n0lpjbl5xf5z16f54g6yx523nc568mdw-gnutar-1.32
  /nix/store/n6aapdd5ig3zwqzir635pr0kbk2hy3bb-data-default-instances-dlist-0.0.1
  /nix/store/n75r9x6cfikswidvwq52zh7gqsksyl9m-fast-logger-2.4.17
  /nix/store/n9q3v9lv0d6m0d374g7gbbcxm5kbkv38-uniplate-1.6.12-doc
  /nix/store/navzd1jm5qb16pf6jlviznkzwfadlrf2-x509-1.7.5
  /nix/store/nf8sm0p0d92an42yi4zm4syx8q97qij5-cmdargs-0.10.20
  /nix/store/nljfvv07dyv1ggvf3l762y9md17z9f2j-warp-tls-3.2.8-doc
  /nix/store/nnggkd7k8c9vc5qlpsqzqackn71pryfc-mono-traversable-1.0.13.0-doc
  /nix/store/nz3wsx06bmcgyb60fp444qw7f46jr1hg-cookie-0.4.4-doc
  /nix/store/p078phc7l26b1krrqx6n5ylrp9bz40vw-data-default-instances-containers-0.0.1-doc
  /nix/store/p6rwk4bq4fq55q6r7j56wh3dwbqnbhck-random-1.1-doc
  /nix/store/p7afv0b9lxn9dcfprr712dgdfng3gpsf-http-conduit-2.3.7.3
  /nix/store/pd6c8fykiwapy8s8vdsap5h2nzlxmpvz-ghci-pretty-0.0.2-doc
  /nix/store/plp3ybpr68c3y6p3rixpw031fjxa2bfw-split-0.2.3.3
  /nix/store/pm6nwn8amgsf8ialrmbl3cyl2bm2xdgr-async-2.2.2
  /nix/store/pxnrkg850a7zfj7bllxkad25ix9ybqga-asn1-encoding-0.9.6-doc
  /nix/store/pz1ys6ppaziripagg98mnqcppl13h028-xz-5.2.4
  /nix/store/q4hl5fqfk4382m7r8832v9b61y3j7d29-base-compat-0.10.5
  /nix/store/q68sibyafcg04qc2jbpcizag0mlyij4l-simple-sendfile-0.2.28-doc
  /nix/store/q6sfa68pa600nvrzwcz3mmlwc13jsm1r-ListLike-4.6.2
  /nix/store/qd7ssfwln72xd594n59iasrxx18dmnsa-aeson-1.4.5.0
  /nix/store/qdqzwp68832n9qmiyz0pi3dg23znadn0-regex-base-0.93.2-doc
  /nix/store/qfnlgs12gf2rx65hg85zaw7hhm7809rs-ipprint-0.6-doc
  /nix/store/qkny27pbaw1dbvi3nbcp0rzz93lgp9hm-network-2.8.0.1-doc
  /nix/store/qnj2gm2dv2yaab4c72dg3d4bzn8z4cz9-gcc-8.3.0-lib
  /nix/store/qqj898iy0cxalknrg5n1bgh8zrbhj8k1-connection-0.3.1-doc
  /nix/store/qy6rb8p4fg1p3xfw0g6wz6iirxbdxizp-gcc-wrapper-8.3.0
  /nix/store/r430gqxwm4hk2l6nik324mc2lpsrw71y-bzlib-0.5.0.5
  /nix/store/r77ss46lb7z2sg0qy33p4d519ydbvsf6-QuickCheck-2.13.2-doc
  /nix/store/racyqy7q3vjwjc3m8v0fi8cnqx7bn5fa-mime-types-0.1.0.9-doc
  /nix/store/raq6n2gvkzkv2xzpi8fswsdfa5ivcqki-haskell-src-1.0.3.0-doc
  /nix/store/rcmi7isfhmn58a118rdvl3g262599nb6-cereal-0.5.8.1
  /nix/store/rl7vzc8p29fjn6jd2fh19bp26h7g4apy-vector-0.12.0.3-doc
  /nix/store/rq6h3hqjnhsb2xglc9sqplm25dhs6mad-resourcet-1.2.2-doc
  /nix/store/rqpwznmyzkxrxklk13n2d4d4723qdwlw-http-types-0.12.3-doc
  /nix/store/rvq15fwkxscglcdd5zla08rw4sb7psrq-x509-1.7.5-doc
  /nix/store/s1x6vb0jds3spmj435py3wx34kg1ysh2-extra-1.6.18
  /nix/store/s4fhx165zh3gs61hnq49miv1ci5ahllf-time-compat-1.9.2.2-doc
  /nix/store/s4i2vx47cb5shzx04g0x0j8scybvyp9r-js-flot-0.8.3-doc
  /nix/store/sbj23n5ck27034xlwq25fmy4id1snnv3-th-abstraction-0.3.1.0
  /nix/store/sbrs8x77hmanjj0rgqyiabw0zp8iy0gf-hscolour-1.24.4-doc
  /nix/store/sns43f6mpymanslbh1ikcqiwi43lkav2-case-insensitive-1.2.0.11
  /nix/store/ssdlak7ifdgbijvqfhhxa0wkgs8vk954-gmp-6.1.2-dev
  /nix/store/v0i2rbrfngwvi1scmsmq914wcrg1mhhk-simple-sendfile-0.2.28
  /nix/store/v2x1ks46fq3yn8c94qfv38wrvmr5xn5r-bash-4.4-p23
  /nix/store/v55s1yl0xj9zr6ddidmrkrwn9f3gp7ah-utility-ht-0.0.14-doc
  /nix/store/vdfrbszad2mw8g4s1aamwhjya8fyy7bl-call-stack-0.1.0-doc
  /nix/store/vilispc75vqanxaw41icpbd41sbn695h-bzip2-1.0.6.0.1-bin
  /nix/store/vl0xbbpmw92vvjvk0yzvzpkc9s44hbzr-old-time-1.1.0.3
  /nix/store/vm53kpi9fqvv3y3c3fvswzqy8vjva3zj-conduit-1.3.1.1
  /nix/store/vpkvh4210npg9pha56j7j18cg9xpdcic-syb-0.7.1-doc
  /nix/store/vqcpbl42v0ipk5d5n9y0mfasjcck4ryq-base-orphans-0.8.1-doc
  /nix/store/vv9cp0vagwa6inhimxnbh4awwcv7q6nd-js-flot-0.8.3-data
  /nix/store/vzmyp4pqf8jbsn7n0cpwfrls2cpmyhh4-ghci-pretty-0.0.2
  /nix/store/w11dvqv85sspv8dq04d6xi6d276jcr2p-tls-1.4.1
  /nix/store/w4x86hbgnv690qan9gc1i89r7aa873jy-wai-logger-2.3.5-doc
  /nix/store/w6rdfvc8pyk247vlb6indm9x8j46g9zb-hourglass-0.2.12-doc
  /nix/store/wnspq0sax9y1wd07cy9fm3cdygv3wdpn-foundation-0.0.25-doc
  /nix/store/wrn6gi02bqsjl9d0j9pqfj9vcv2nzsi7-gzip-1.10
  /nix/store/wsyhypxrqpsapfgz3a1czrqhqx3qqbin-unliftio-core-0.1.2.0-doc
  /nix/store/wwizmp651s5jnhfbn2nv1kjjxvsqv1f0-findutils-4.7.0
  /nix/store/wwnd7qqy9f8w1mqh861vqgnbr551x63g-wai-3.2.2.1-doc
  /nix/store/x6d1d89pixrzi6vw3bk4f2i8yir4gpyf-diffutils-3.7
  /nix/store/x7p6qxxr66897abi8dxkv56527rygscr-word8-0.1.3-doc
  /nix/store/xdmcfbk7a0h0h976xglq1grnv3w22afp-connection-0.3.1
  /nix/store/xp3xakqq50f6fqs9sibb6iyz7m0a59dc-exceptions-0.10.3
  /nix/store/xsjbsfnk57ngz3667qlzwy78rbmbkspj-cmdargs-0.10.20-doc
  /nix/store/xxpj01b0qwfih7lw23a0sdnh5v6hf6v8-expand-response-params
  /nix/store/y0qyz7yjmcqkqsk547a4hs5b6bsgyk8j-unordered-containers-0.2.10.0
  /nix/store/ydjj8p0qypz7ha9xk7v5anxfwwqnjx38-attoparsec-0.13.2.3
  /nix/store/yj4rv2h7j83psq6ihxi1mymmrvgawmn2-regex-compat-0.95.1-doc
  /nix/store/yjg7kjxbc9rvc1161y20z9jc7ljb5gwa-cryptonite-0.25-doc
  /nix/store/yjxasgw50wkq1xla3kv2x4py2za18ax9-data-default-instances-dlist-0.0.1-doc
  /nix/store/yp4hgv6z4cyh612vv8pcs6x37hx4nn5x-gnugrep-3.3
  /nix/store/ypklf23py1by5v3b7r3n1ib71n47kg9z-dlist-0.8.0.7
  /nix/store/yv1rlg1gixwrbdr8zmfgdzpvf5baqh5w-storable-record-0.0.4-doc
  /nix/store/yxsy2bg90janvx5n6baiiilhihnmarsc-splitmix-0.0.3-doc
  /nix/store/z04mkllwkvjlnj8vr0b4idbss6vd5mrb-streaming-commons-0.2.1.1-doc
  /nix/store/z9mh1v28jmwl4ffkmy7jsnmc2qddm54i-auto-update-0.1.6
  /nix/store/zbflznzv7zhcjv7da03v8czlbzh2qprv-pem-0.2.4-doc
  /nix/store/zcksaa3lygr5x4s4pxsjf1qp21f22wdl-warp-3.2.28
  /nix/store/zdy70mbkjla1apydbf3nx0hrgab28249-hscolour-1.24.4-data
  /nix/store/zhnj88fidw9lj1p7kwywv5x1bdr6shhn-old-locale-1.0.0.7
  /nix/store/zhr5z37cjgblzd09l7dz2ap9nfj1khza-bsb-http-chunked-0.0.0.4-doc
  /nix/store/zjv047z0qf6s185mcwqrv538gbwadj5g-http-types-0.12.3
  /nix/store/zkbzavfgg6b5zil7l7fmf7lwza66rdfc-pureMD5-2.1.3
  /nix/store/zl5d6r35rm8jkwsh9xw718adsi8amx1m-Unixutils-1.54.1
  /nix/store/zm6n9adsxjncqrqsmdas4q8wcf9adhhl-libffi-3.2.1-dev
  /nix/store/zrb03b3v1w2l594lh5mv1x9jdc2z1vkn-hashable-1.2.7.0
  /nix/store/zrqzklmcfrvp5xi685j8bf9dlwlipvx4-asn1-parse-0.9.5-doc
  /nix/store/zwqfg0b5jq52rqwqcwd3j2famxmb6zrz-aeson-1.4.5.0-doc
  /nix/store/zy7b4ipils68q69bxix5ar1pfnwrz33v-sr-extra-1.46.3.2
copying path '/nix/store/hnp72ygssavd526rp7qk3yjylyc2klcw-glibc-2.27' from 'https://cache.nixos.org'...
copying path '/nix/store/vqcpbl42v0ipk5d5n9y0mfasjcck4ryq-base-orphans-0.8.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/gfxidlnkan9wk5dph95hl0mb0j4sh7fv-attr-2.4.48' from 'https://cache.nixos.org'...
copying path '/nix/store/v2x1ks46fq3yn8c94qfv38wrvmr5xn5r-bash-4.4-p23' from 'https://cache.nixos.org'...
copying path '/nix/store/032zf1cn5fmnfhp5xsw99igb5gi20rk4-acl-2.2.53' from 'https://cache.nixos.org'...
copying path '/nix/store/img4b8hdms8yjjc42ji9lr5jlkxrkdvl-bzip2-1.0.6.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/2gg7a91c98ga07fvyyp2k1bvrds213jr-coreutils-8.31' from 'https://cache.nixos.org'...
copying path '/nix/store/vilispc75vqanxaw41icpbd41sbn695h-bzip2-1.0.6.0.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/x6d1d89pixrzi6vw3bk4f2i8yir4gpyf-diffutils-3.7' from 'https://cache.nixos.org'...
copying path '/nix/store/7688s3f435gqjrzc51cibxcc92rrmgjk-bzip2-1.0.6.0.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/jiy2fgs67dk1q7sk106fd1zp13yiqvwa-ed-1.15' from 'https://cache.nixos.org'...
copying path '/nix/store/xxpj01b0qwfih7lw23a0sdnh5v6hf6v8-expand-response-params' from 'https://cache.nixos.org'...
copying path '/nix/store/wwizmp651s5jnhfbn2nv1kjjxvsqv1f0-findutils-4.7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/m03f3v2brc581gzrdnc22apgfbiglbb1-gawk-5.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/qnj2gm2dv2yaab4c72dg3d4bzn8z4cz9-gcc-8.3.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/jkpn22y84gyglhrldfw6xsq393y3d6li-ghc-8.6.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cnij4yyvknw66igil49fblp91j8ya3hf-glibc-2.27-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/7p357sny6bm5xzxzdi4r4dkk38fbgy1w-appar-0.1.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/57aljkzw3d6i29iyjr54xaavascb71hx-auto-update-0.1.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/21yny3cdfnxw09s0gpazajan77jx98ng-base-compat-0.10.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/gxirb8si64adlvr6jcrdr5m7bwbk1spj-basement-0.0.11-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/a3a1drghlxrh19s5y27vi177gq5wpnlq-blaze-builder-0.4.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zhr5z37cjgblzd09l7dz2ap9nfj1khza-bsb-http-chunked-0.0.0.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/g5zfcviyihz5v17jmcphqd99cq9g59ah-blaze-markup-0.8.2.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5c8qr63xbag3r109l7jmq02fpi0am3qq-byteorder-1.0.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2w2a81ypxhwchc2sqa99njjhq30c1rm4-blaze-html-0.9.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jk7z5kxavwqp4y74pa0yq0fk5vmw5wsx-bzlib-0.5.0.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vdfrbszad2mw8g4s1aamwhjya8fyy7bl-call-stack-0.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/aamcmi3j4ca3crdpfafwhlmdnngizpq8-cereal-0.5.8.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fikq77j3bnf4xbs1kqvi6nlghd418dqy-HUnit-1.6.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/graardhvblpa8in63qrgxf5ah6mnlfss-clock-0.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xsjbsfnk57ngz3667qlzwy78rbmbkspj-cmdargs-0.10.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/aa9ls0hs2mb56fb1vdw4g50pdsf71wqj-data-default-class-0.1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/673lnp1rmv0y4c8nmyxsixdigvkky7nj-dlist-0.8.0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nz3wsx06bmcgyb60fp444qw7f46jr1hg-cookie-0.4.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/p078phc7l26b1krrqx6n5ylrp9bz40vw-data-default-instances-containers-0.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yjxasgw50wkq1xla3kv2x4py2za18ax9-data-default-instances-dlist-0.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0gfrpwlpmdv4m4kynkfvf8pv6w79viyl-easy-file-0.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k2h6n4d51r94bfam0imxl4r7j24vj24z-entropy-0.4.1.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7p80qrg8w5m372px2g2w0mhxr65xgz55-exceptions-0.10.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/b7iwrf7364567j9shcbqcia35alsgh29-extra-1.6.18-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9bjgxdl1p3g70z450mriyzk5b5p2jhnf-fmlist-0.9.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wnspq0sax9y1wd07cy9fm3cdygv3wdpn-foundation-0.0.25-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4wfdiiyjasv9dqqhcw7f2kzra6a0liaf-gmp-6.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/1pqpczna5ipwxm3jjv6f9g3d6fpdchm3-gnumake-4.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/ssdlak7ifdgbijvqfhhxa0wkgs8vk954-gmp-6.1.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/40ycaiwd64kjxc03lvw6imb3biwybcl3-gnused-4.7' from 'https://cache.nixos.org'...
copying path '/nix/store/n0lpjbl5xf5z16f54g6yx523nc568mdw-gnutar-1.32' from 'https://cache.nixos.org'...
copying path '/nix/store/wrn6gi02bqsjl9d0j9pqfj9vcv2nzsi7-gzip-1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/7rxancn6qyws1ssha4s2i64wjqiffvb8-hashable-1.2.7.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5r8vy3fhv8kw1lmm188f62z80kzz5j62-haskell-src-exts-1.21.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1n520657qdfsypvx0ascdzpasckinbjd-async-2.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/imxf8ihn1xpb5fchvn18wxhdayb1d3xb-case-insensitive-1.2.0.11-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j645z05ng0971b9r48j8sx0vrfqg94ga-hoogle-5.0.17.11-data' from 'https://cache.nixos.org'...
copying path '/nix/store/drhly1wf8vzn3sli1hx3p9dgxf3ypz7a-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/w6rdfvc8pyk247vlb6indm9x8j46g9zb-hourglass-0.2.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jmqhmxj8ihzbdszi5rc746x09gfaidfl-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/zdy70mbkjla1apydbf3nx0hrgab28249-hscolour-1.24.4-data' from 'https://cache.nixos.org'...
copying path '/nix/store/sbrs8x77hmanjj0rgqyiabw0zp8iy0gf-hscolour-1.24.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rqpwznmyzkxrxklk13n2d4d4723qdwlw-http-types-0.12.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/58wl6lcbwdxnakgpl4h7kz2m9rcb3ivq-integer-logarithms-1.0.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vv9cp0vagwa6inhimxnbh4awwcv7q6nd-js-flot-0.8.3-data' from 'https://cache.nixos.org'...
copying path '/nix/store/3vm087hrh011b9gzdlahf72sr8lcbpdr-js-jquery-3.3.1-data' from 'https://cache.nixos.org'...
copying path '/nix/store/s4i2vx47cb5shzx04g0x0j8scybvyp9r-js-flot-0.8.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0zhxrdpahllpcnggjf2cg60v8h2bq978-js-jquery-3.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8z6j7rw3hll837a9dvzp9vx12nvjxhgk-libffi-3.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/l2af0lnsx0x7ghd92g58ycdzhg0ivkws-linux-headers-4.19.16' from 'https://cache.nixos.org'...
copying path '/nix/store/zm6n9adsxjncqrqsmdas4q8wcf9adhhl-libffi-3.2.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/m48mayi9siabcix556g1pcccsy3g80kn-glibc-2.27-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/hy2xydrgwfai12b3vqjrh4vyai9vg7z1-lndir-1.0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/gsycyhjvgk9j64p6bdxvryipagcm2glp-memory-0.14.18-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/racyqy7q3vjwjc3m8v0fi8cnqx7bn5fa-mime-types-0.1.0.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lkaiz48z6zzq71k5lg06fd72mhrs334c-asn1-types-0.3.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yjg7kjxbc9rvc1161y20z9jc7ljb5gwa-cryptonite-0.25-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pxnrkg850a7zfj7bllxkad25ix9ybqga-asn1-encoding-0.9.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9f0w9yiz6rl6s2nq6f9w3phgb9szrgz6-mmap-0.5.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zrqzklmcfrvp5xi685j8bf9dlwlipvx4-asn1-parse-0.9.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2hwqz955r1gazfikrkcls64ny99v0pd8-ncurses-6.1-20190112' from 'https://cache.nixos.org'...
copying path '/nix/store/qkny27pbaw1dbvi3nbcp0rzz93lgp9hm-network-2.8.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j4cl89f7wm7wa4iiss9486ab8qni9a4p-network-byte-order-0.1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6i8r7zihg626i0ghihsinhg78j1zdjdd-iproute-1.7.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lcbmpgxk09qf66sr8iv1as5g09ll14db-network-uri-2.6.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/hnhh0cm6dadd29qi9i59jrwp28bsvzvg-old-locale-1.0.0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bhmlp41xlcdi9fdsci9acjbxdl1h5bzv-patch-2.7.6' from 'https://cache.nixos.org'...
copying path '/nix/store/9wl4rbczxxa5fzc9j3dsar3lcn0p9bif-data-default-instances-old-locale-0.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6l6sjj2xy71194ppxhfz56chqdi68hva-old-time-1.1.0.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/f8ndal66ql6pa4ync3k0hi8mw9qdmq2s-data-default-0.7.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fdz7jkkccripgjfdljw2bv8jymxrswn1-patchelf-0.9' from 'https://cache.nixos.org'...
copying path '/nix/store/mcyrl0hkx20imaxrqim92yp5pbp02n6s-pcre-8.43' from 'https://cache.nixos.org'...
copying path '/nix/store/zbflznzv7zhcjv7da03v8czlbzh2qprv-pem-0.2.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yp4hgv6z4cyh612vv8pcs6x37hx4nn5x-gnugrep-3.3' from 'https://cache.nixos.org'...
copying path '/nix/store/939gkqx4mbpf5df0s4vx57ii3n79ppm9-perl-5.30.0' from 'https://cache.nixos.org'...
copying path '/nix/store/izqc8dhr3d3h5i0b8nqcv63jc3jclcdj-primitive-0.6.4.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/d8c2jwqykhs1l5c0qgnr7k87zyv3hn92-psqueues-0.2.7.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/p6rwk4bq4fq55q6r7j56wh3dwbqnbhck-random-1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cg0c1z5ysnzg42sxzr1irfdq2r7x4f1s-http2-1.6.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qdqzwp68832n9qmiyz0pi3dg23znadn0-regex-base-0.93.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/giln468h1mxj0dfb27l60qjj3bw9rbma-scientific-0.3.6.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6w5mcpc79a66yg551i3sjy4q5b8d5kxp-regex-posix-0.95.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c3q7sb1lcvrx00d92jdlj3jprs6znbcq-attoparsec-0.13.2.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yj4rv2h7j83psq6ihxi1mymmrvgawmn2-regex-compat-0.95.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7w24lsjs00djgnkqwai6zk7px1hllkpa-http-date-0.0.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/kws9d754210q15fzxi5gggkz167k48wm-regex-tdfa-1.2.3.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6hj1q09pjfn0ykaic3cmx5dyv025kxm3-semigroups-0.18.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/q68sibyafcg04qc2jbpcizag0mlyij4l-simple-sendfile-0.2.28-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/crx6hbcjsv3ffnz169hvamlykg2svd8a-socks-0.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/14yv9rsqryayfjgfgp5jjb11ns3siarh-split-0.2.3.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yxsy2bg90janvx5n6baiiilhihnmarsc-splitmix-0.0.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yv1rlg1gixwrbdr8zmfgdzpvf5baqh5w-storable-record-0.0.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/r77ss46lb7z2sg0qy33p4d519ydbvsf6-QuickCheck-2.13.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vpkvh4210npg9pha56j7j18cg9xpdcic-syb-0.7.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9f9y8w6xhj96kbyzzknf2xqnyik7lja0-tagged-0.8.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/raq6n2gvkzkv2xzpi8fswsdfa5ivcqki-haskell-src-1.0.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4kjfb5zf2mcsbycx0dvwsdrb2aa9yjg1-crypto-api-0.13.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6dp10lhhcih7xwgngfzf300sgq784kxj-tar-0.5.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3iadrr3qpq1c6dn63v51vk5iaf3pzfvs-pureMD5-2.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5arvwqc1lh0b0b1jcfapdlrv5lqd51wm-th-abstraction-0.3.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/s4fhx165zh3gs61hnq49miv1ci5ahllf-time-compat-1.9.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4q2qm7md2vsrxz1mh1iv63paf4if31rq-generic-deriving-1.12.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/61bi269vpmjrsc73mhb5y0qvsi4s3igg-time-manager-0.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fp2365jl3zq4wj83wv8a853ppbdkpb6a-transformers-compat-0.6.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jd1dc9jj7n97j7agb2xc0pfw8ny10w2i-unix-compat-0.5.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bsxfffw502s77yfif3d8p9dmjs7zxy0w-unix-time-0.4.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wsyhypxrqpsapfgz3a1czrqhqx3qqbin-unliftio-core-0.1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dfyx3cdkxz4ixzr8df74akjyancabmwc-fast-logger-2.4.17-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rq6h3hqjnhsb2xglc9sqplm25dhs6mad-resourcet-1.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c4bv0jadvwxj52lwkdi4pcaadicql0jw-typed-process-0.2.6.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8a4n8mkmy1hb9rhvn3xhj8c6hmgqmfys-unordered-containers-0.2.10.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9z7dvjd62i6h5damzpghhwvz63b4pz7z-utf8-string-1.0.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/n9q3v9lv0d6m0d374g7gbbcxm5kbkv38-uniplate-1.6.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/v55s1yl0xj9zr6ddidmrkrwn9f3gp7ah-utility-ht-0.0.14-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k9wlyqmm17zsirbx7ayhl77zlb4y2k49-uuid-types-1.0.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/li6k0fbjmca4al6i9vx459bklp69jw3j-storable-tuple-0.0.3.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/hcbak1f4ljz2814jff2sm4vvlqfdrrq2-vault-0.3.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rl7vzc8p29fjn6jd2fh19bp26h7g4apy-vector-0.12.0.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wwnd7qqy9f8w1mqh861vqgnbr551x63g-wai-3.2.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5mrwwnhgnx0yd7yq94yaqwgvbxksq9z0-ListLike-4.6.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zwqfg0b5jq52rqwqcwd3j2famxmb6zrz-aeson-1.4.5.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mw091xrabqva47xbqmicc3npl0lvlrrf-process-extras-0.7.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fh28qrrarhk48vsn3fkjiypl3cz3pmrr-vector-algorithms-0.8.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/w4x86hbgnv690qan9gc1i89r7aa873jy-wai-logger-2.3.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nnggkd7k8c9vc5qlpsqzqackn71pryfc-mono-traversable-1.0.13.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/x7p6qxxr66897abi8dxkv56527rygscr-word8-0.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4yx33smahbyij8n0yisbrv1hhrl06j0g-conduit-1.3.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rvq15fwkxscglcdd5zla08rw4sb7psrq-x509-1.7.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pz1ys6ppaziripagg98mnqcppl13h028-xz-5.2.4' from 'https://cache.nixos.org'...
copying path '/nix/store/dbwvxsbpn6h3lr3qikk4vnf4ghbmfxsk-x509-store-1.6.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jw6l5ypblb10d8awazq3ni5gfma7439a-xz-5.2.4-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/jfv9ny5p2ral57p9a2nxsjimgc1y4p9s-x509-system-1.6.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0dmvwar8b2i9jf031hcrdd4k8a103f37-stdenv-linux' from 'https://cache.nixos.org'...
copying path '/nix/store/dxh741mlcayyfarj2l4vr6zxlxh30m2g-x509-validation-1.6.11-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5jzm1bdymi8knp5wf3lvrkmi623s3i6v-zlib-0.6.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5ya2g3dnihp9qkyb9yx98cfv303l25bv-tls-1.4.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dzl4b5lkjdfbyq6lq950rkzcl214pcjg-Unixutils-1.54.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qqj898iy0cxalknrg5n1bgh8zrbhj8k1-connection-0.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ms0jhsz2sgl9zqrjcdza1zlgqwmq5pn7-sr-extra-1.46.3.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/z04mkllwkvjlnj8vr0b4idbss6vd5mrb-streaming-commons-0.2.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qfnlgs12gf2rx65hg85zaw7hhm7809rs-ipprint-0.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bdrv385c9jmap5n4852r010b24m5544k-conduit-extra-1.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pd6c8fykiwapy8s8vdsap5h2nzlxmpvz-ghci-pretty-0.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3kiay2f9ash2qixqslkgrz55zbx533kd-http-client-0.6.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6yn52gzmqj8ig8gdzrqrsmxpw4w0z8s5-tls-session-manager-0.0.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2nfxh2x4y1a4419p5kibkg2pc7363bsx-http-client-tls-0.3.5.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3d3hajh3pz87xczq3zgx93mnqj6hhqbx-warp-3.2.28-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4jha1b1i5fvs4c561xfwpq287fx02bnj-http-conduit-2.3.7.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nljfvv07dyv1ggvf3l762y9md17z9f2j-warp-tls-3.2.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3zmbbkvxkgsp6z0qhnpdaaz7kkksq3m7-zlib-1.2.11' from 'https://cache.nixos.org'...
copying path '/nix/store/8j3xwi0i400a79d7dz9885sl0w4jy3ib-hoogle-5.0.17.11-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jy6zl5dkw5rcjczm1arjqxz95l9d40i7-binutils-2.31.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bhngps8y3sf2hdfkbi16bk2ya3k67rkq-gcc-8.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/bka8pxk1i0yj6njfd99w8zhjk1x3wcxr-binutils-wrapper-2.31.1' from 'https://cache.nixos.org'...
copying path '/nix/store/m9ad1h95v1bp687kinx7yq8w1fkr9ia6-zlib-1.2.11-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/qy6rb8p4fg1p3xfw0g6wz6iirxbdxizp-gcc-wrapper-8.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/gxjsylf3cz94fk1hpx39x2garh7s1v9j-ghc-8.6.5' from 'https://cache.nixos.org'...
copying path '/nix/store/8y3a1jl49s8w309md8p632jnlpjzlp14-stdenv-linux' from 'https://cache.nixos.org'...
copying path '/nix/store/criqgw6g77kvrrcir3ql94j881iv72x9-appar-0.1.8' from 'https://cache.nixos.org'...
copying path '/nix/store/z9mh1v28jmwl4ffkmy7jsnmc2qddm54i-auto-update-0.1.6' from 'https://cache.nixos.org'...
copying path '/nix/store/q4hl5fqfk4382m7r8832v9b61y3j7d29-base-compat-0.10.5' from 'https://cache.nixos.org'...
copying path '/nix/store/0sa6gjkdmnlc5ji8kq2wllzswfzyxa7v-base-orphans-0.8.1' from 'https://cache.nixos.org'...
copying path '/nix/store/fy8b0k32alkari5wq15gx74h5gfzp79g-basement-0.0.11' from 'https://cache.nixos.org'...
copying path '/nix/store/8pizvd0f6f5gg8yz9a9168vq42dgcd84-blaze-builder-0.4.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/10yp9qb0qjzlv85351q67q4fks6aknkg-bsb-http-chunked-0.0.0.4' from 'https://cache.nixos.org'...
copying path '/nix/store/ab40330hbfhs6y70h5dk7hfhf1hj9dbd-blaze-markup-0.8.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/a3r8jmy5b9xxah4fiq4r2gf940l8b20w-byteorder-1.0.4' from 'https://cache.nixos.org'...
copying path '/nix/store/5yaqs4pi8qg7474pdgrf0irxw693piic-blaze-html-0.9.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/r430gqxwm4hk2l6nik324mc2lpsrw71y-bzlib-0.5.0.5' from 'https://cache.nixos.org'...
copying path '/nix/store/liqysa6kqbj8dbn1iapl3kns8rnix4s6-call-stack-0.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/rcmi7isfhmn58a118rdvl3g262599nb6-cereal-0.5.8.1' from 'https://cache.nixos.org'...
copying path '/nix/store/aksfwy8c735m0q1dcmi1clb4zjg2nxwr-HUnit-1.6.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/hcg7dl0zd3zpxyzni470d0rbyh6pip69-clock-0.8' from 'https://cache.nixos.org'...
copying path '/nix/store/nf8sm0p0d92an42yi4zm4syx8q97qij5-cmdargs-0.10.20' from 'https://cache.nixos.org'...
copying path '/nix/store/8q91gdkh9wc86bs8a0716blril4hy9md-data-default-class-0.1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ypklf23py1by5v3b7r3n1ib71n47kg9z-dlist-0.8.0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/kh264m93bw1ch80yr69cn3hsd5f57p6w-cookie-0.4.4' from 'https://cache.nixos.org'...
copying path '/nix/store/6c2wg28bg40nqkcqjy3i62a2awzzrzg0-data-default-instances-containers-0.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/n6aapdd5ig3zwqzir635pr0kbk2hy3bb-data-default-instances-dlist-0.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/m6sd7idwcg4xy51n9ssk0pl50qf4wpra-easy-file-0.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/01b9gpkk83karr2ps4gfgw89qj770a71-entropy-0.4.1.5' from 'https://cache.nixos.org'...
copying path '/nix/store/j9kgw0kpscm1wmhnzmxqp40sxdq0wg7f-fmlist-0.9.3' from 'https://cache.nixos.org'...
copying path '/nix/store/5kaansc8gafd9zqj3dk95r0kdld240a9-foundation-0.0.25' from 'https://cache.nixos.org'...
copying path '/nix/store/zrb03b3v1w2l594lh5mv1x9jdc2z1vkn-hashable-1.2.7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/5zvkhxr8g3l16w9jhxbv6y4gpsvffbvk-haskell-src-exts-1.21.1' from 'https://cache.nixos.org'...
copying path '/nix/store/pm6nwn8amgsf8ialrmbl3cyl2bm2xdgr-async-2.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/sns43f6mpymanslbh1ikcqiwi43lkav2-case-insensitive-1.2.0.11' from 'https://cache.nixos.org'...
copying path '/nix/store/jsj9dga7cyralwpqgzf7mv48c72mzg4i-hourglass-0.2.12' from 'https://cache.nixos.org'...
copying path '/nix/store/gx99ppinssyvvbjhcdc5brpz41z283i4-hscolour-1.24.4' from 'https://cache.nixos.org'...
copying path '/nix/store/zjv047z0qf6s185mcwqrv538gbwadj5g-http-types-0.12.3' from 'https://cache.nixos.org'...
copying path '/nix/store/jlg12h8is9v29xklh9zfcff9jsnxy8i7-integer-logarithms-1.0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/ml4j22fvn6xkkf9cffc3l4fjw1wmm1yx-js-flot-0.8.3' from 'https://cache.nixos.org'...
copying path '/nix/store/95r8f78xbqcxz1qwayh633nnjsv0ndpg-js-jquery-3.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/j1hddlij6dhdzhqbr0hb89y56gicdy28-memory-0.14.18' from 'https://cache.nixos.org'...
copying path '/nix/store/hr6k3zdrkr76r06h00rd1pdh9apafs6d-mime-types-0.1.0.9' from 'https://cache.nixos.org'...
copying path '/nix/store/8a2sips98s5y4ky68h6z85i034s8hmj1-asn1-types-0.3.3' from 'https://cache.nixos.org'...
copying path '/nix/store/jxs85rvhx70fsj20sz3qm2j4jflm2b79-cryptonite-0.25' from 'https://cache.nixos.org'...
copying path '/nix/store/i8kfh2sd9qki7rv8slxvd44303nni730-asn1-encoding-0.9.6' from 'https://cache.nixos.org'...
copying path '/nix/store/h8smr6xfv6kj6dkaw9kh4anmzffc9d43-mmap-0.5.9' from 'https://cache.nixos.org'...
copying path '/nix/store/6qr224xh5adhvfmhmy78srarcv5g172h-asn1-parse-0.9.5' from 'https://cache.nixos.org'...
copying path '/nix/store/bgh3bgq6fsjpv5slz4igx24lrg5bypix-network-2.8.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/fy3mclr76n7qdkcfsd6v1c7ffyasgl3i-network-byte-order-0.1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/8gfkl5xfynq1qr9j0zfc4zfki9sf74s1-iproute-1.7.7' from 'https://cache.nixos.org'...
copying path '/nix/store/1dpgp88bcgc661yg2snfx0zyha760b9g-network-uri-2.6.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/zhnj88fidw9lj1p7kwywv5x1bdr6shhn-old-locale-1.0.0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/mngp6zcp2ihl32knnnwkx2q5cgkp7yd2-pem-0.2.4' from 'https://cache.nixos.org'...
copying path '/nix/store/h333v139car5yfw31dh34liz2bv58w18-data-default-instances-old-locale-0.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/vl0xbbpmw92vvjvk0yzvzpkc9s44hbzr-old-time-1.1.0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/lxqvks65sqa9c3j4s3jccnr7f1f47hz5-data-default-0.7.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/0cxrygiwcssib27sgff1fckcjn5mwwmb-primitive-0.6.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/2357gw86330wvxw7p25zgazaxvvag46v-psqueues-0.2.7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/m1bdhnjh7sg8hmb7whad6qarnlm3670j-random-1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/avapyam3axpln28p9dp76ks7cx5fwpba-http2-1.6.5' from 'https://cache.nixos.org'...
copying path '/nix/store/jjvg603qhqh0hgf06xi48g0fv4fnszrb-regex-base-0.93.2' from 'https://cache.nixos.org'...
copying path '/nix/store/26wv3m1x85z3q3kxkp9qvgnqmgck5v2p-scientific-0.3.6.2' from 'https://cache.nixos.org'...
copying path '/nix/store/4j3271q66pc04jfqq0gccbp6qxp3mga6-regex-posix-0.95.2' from 'https://cache.nixos.org'...
copying path '/nix/store/ydjj8p0qypz7ha9xk7v5anxfwwqnjx38-attoparsec-0.13.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/1yqnlfd4n2vbdjqll3mgv478gh4hy5xq-regex-compat-0.95.1' from 'https://cache.nixos.org'...
copying path '/nix/store/d51cvzp1pay7vjfkn9laksmx0420b16y-http-date-0.0.8' from 'https://cache.nixos.org'...
copying path '/nix/store/iclkjm6j7r51xyddiprbd88qqbrlfp4a-regex-tdfa-1.2.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/4968yxpilaaabd90w9cmsk774xifgxhk-semigroups-0.18.5' from 'https://cache.nixos.org'...
copying path '/nix/store/v0i2rbrfngwvi1scmsmq914wcrg1mhhk-simple-sendfile-0.2.28' from 'https://cache.nixos.org'...
copying path '/nix/store/s1x6vb0jds3spmj435py3wx34kg1ysh2-extra-1.6.18' from 'https://cache.nixos.org'...
copying path '/nix/store/05mpgbw5sq1ywh8n04lpncp0smnnbc9h-socks-0.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/plp3ybpr68c3y6p3rixpw031fjxa2bfw-split-0.2.3.3' from 'https://cache.nixos.org'...
copying path '/nix/store/700clmjw79d5xkpck3n2v9p932lg2nb6-splitmix-0.0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/6ywwxvni787whsig4xznq6fs4dp1i6pd-syb-0.7.1' from 'https://cache.nixos.org'...
copying path '/nix/store/favyqw7d9394c71msidckivbqrirqpz8-QuickCheck-2.13.2' from 'https://cache.nixos.org'...
copying path '/nix/store/1vbkl8a48xxqqdrsvnx12q6670pqh41m-haskell-src-1.0.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/jhy3q7nbr341blq7g5vbhb1pddlvl6vw-tagged-0.8.6' from 'https://cache.nixos.org'...
copying path '/nix/store/jk4gjqnqnh2y79hqkrhbldr4lrlp1ga0-tar-0.5.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/6bbm9vhmqd07y33mzidn21lhh0z7sq7y-crypto-api-0.13.3' from 'https://cache.nixos.org'...
copying path '/nix/store/sbj23n5ck27034xlwq25fmy4id1snnv3-th-abstraction-0.3.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/zkbzavfgg6b5zil7l7fmf7lwza66rdfc-pureMD5-2.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/kkwbhidblm9kffqih3yiyhwlrmg7n57b-generic-deriving-1.12.4' from 'https://cache.nixos.org'...
copying path '/nix/store/b8l1fmc90m4nv7g9bh4h7rn25mi1i3yk-time-compat-1.9.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/7d1ijbsn67d5j2qqgh7s6fcnhsj98s4p-time-manager-0.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/gr5kzhcf8rkg83zcbdxk3j4an0ayvh6h-transformers-compat-0.6.5' from 'https://cache.nixos.org'...
copying path '/nix/store/mgxjcmksp7kd851bcc6cw6fz5cc94gs9-unix-compat-0.5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/xp3xakqq50f6fqs9sibb6iyz7m0a59dc-exceptions-0.10.3' from 'https://cache.nixos.org'...
copying path '/nix/store/f731s3bkplzgh4xc324n42fp0m11vv75-unix-time-0.4.7' from 'https://cache.nixos.org'...
copying path '/nix/store/5n2ixypldaflm0s2mmkgq4s6rdicdixb-unliftio-core-0.1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/n75r9x6cfikswidvwq52zh7gqsksyl9m-fast-logger-2.4.17' from 'https://cache.nixos.org'...
copying path '/nix/store/imhivhr696jxv603jzh7rkji6z7p23db-resourcet-1.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/bmbp1dk75cn7f921paparvbl2kxsmh8j-typed-process-0.2.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/y0qyz7yjmcqkqsk547a4hs5b6bsgyk8j-unordered-containers-0.2.10.0' from 'https://cache.nixos.org'...
copying path '/nix/store/lq418gz5p0xdbymq8wsw0914gi364l61-utf8-string-1.0.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/06pmgw33pwz55l3hfcjxkmdd29kdfj8q-uniplate-1.6.12' from 'https://cache.nixos.org'...
copying path '/nix/store/0v6gwa472i4i9xfr183mvz7x4a0fqhc4-utility-ht-0.0.14' from 'https://cache.nixos.org'...
copying path '/nix/store/8jqkrvagyw1yipzszripvh387npqrw58-uuid-types-1.0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/79wg08x2ydx2jmryz7gihb5kccgi8y53-storable-record-0.0.4' from 'https://cache.nixos.org'...
copying path '/nix/store/lhzja4kfmxi8wakmdhdpk3kzjbja7mr8-vault-0.3.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/29lirk00l98x4a1aikzwg9zqvnfkfs1c-storable-tuple-0.0.3.3' from 'https://cache.nixos.org'...
copying path '/nix/store/ljc84fxk8v7wdfyc3y7zr17lz76d5asl-vector-0.12.0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/j4m0d9mgwqvb84fx6ln3nl7zj19sq5bs-wai-3.2.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/q6sfa68pa600nvrzwcz3mmlwc13jsm1r-ListLike-4.6.2' from 'https://cache.nixos.org'...
copying path '/nix/store/qd7ssfwln72xd594n59iasrxx18dmnsa-aeson-1.4.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/dkbzz8zc19n0sy2gw26gj6r9dyadg7sj-process-extras-0.7.4' from 'https://cache.nixos.org'...
copying path '/nix/store/j6p5nar8kd5c7j7vwqb7kyyspq8wvf8r-vector-algorithms-0.8.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/56a87ffc50k32yniiccb7ggmmsx4k61h-wai-logger-2.3.5' from 'https://cache.nixos.org'...
copying path '/nix/store/53kc1c6q5g7s8yxrzmasnmrgsbkhhyrc-mono-traversable-1.0.13.0' from 'https://cache.nixos.org'...
copying path '/nix/store/1q032vm84kfccch3ihlf5f9bs2vz7ass-word8-0.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/vm53kpi9fqvv3y3c3fvswzqy8vjva3zj-conduit-1.3.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/navzd1jm5qb16pf6jlviznkzwfadlrf2-x509-1.7.5' from 'https://cache.nixos.org'...
copying path '/nix/store/667j9cy9yrdgcqixqhlw93c6vrwh9zpj-zlib-0.6.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/8mm525lzg3ii4kgf39vnz5hv75gwb651-x509-store-1.6.7' from 'https://cache.nixos.org'...
copying path '/nix/store/zl5d6r35rm8jkwsh9xw718adsi8amx1m-Unixutils-1.54.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4mcyrbbjnj628j8likqwcgds3w23y35w-streaming-commons-0.2.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/zy7b4ipils68q69bxix5ar1pfnwrz33v-sr-extra-1.46.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/2dr5qjibqc0y3d1pmhmr89bdi863hla7-conduit-extra-1.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/kxjswmavpq024sn00b1i2h17gyl9pqkl-http-client-0.6.4' from 'https://cache.nixos.org'...
copying path '/nix/store/5ad4bg7737z2acywz0gzp2amk3l54vz1-ipprint-0.6' from 'https://cache.nixos.org'...
copying path '/nix/store/zcksaa3lygr5x4s4pxsjf1qp21f22wdl-warp-3.2.28' from 'https://cache.nixos.org'...
copying path '/nix/store/vzmyp4pqf8jbsn7n0cpwfrls2cpmyhh4-ghci-pretty-0.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/fm3h48pjnb85c7hbmxcbhbgjc4ficrm9-x509-system-1.6.6' from 'https://cache.nixos.org'...
copying path '/nix/store/cdq8h2p1qhy8fnxvw4jpwvjk5x6mpsi0-x509-validation-1.6.11' from 'https://cache.nixos.org'...
copying path '/nix/store/w11dvqv85sspv8dq04d6xi6d276jcr2p-tls-1.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/xdmcfbk7a0h0h976xglq1grnv3w22afp-connection-0.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/6w3qbqwbiih7ayr5vd9l996fr0r97azm-tls-session-manager-0.0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/04cnwapgz40q7shxqbspi98r41i5apr6-http-client-tls-0.3.5.3' from 'https://cache.nixos.org'...
copying path '/nix/store/j20vh8hfnnwnj6sldldg1v12hb4niya5-warp-tls-3.2.8' from 'https://cache.nixos.org'...
copying path '/nix/store/p7afv0b9lxn9dcfprr712dgdfng3gpsf-http-conduit-2.3.7.3' from 'https://cache.nixos.org'...
copying path '/nix/store/m2lda1sv3pvx3263xa5mc36qc5dfkhkz-hoogle-5.0.17.11' from 'https://cache.nixos.org'...
building '/nix/store/yz6147g037vq7zl968ibp2xd2j6v1c3d-hoogle-local-0.1.drv'...
importing builtin packages
importing other packages
building hoogle database
Starting generate
[1/74] Cabal... 1.68s
[3/74] ListLike... 1.04s
[7/74] base... 1.80s      
[13/74] containers... 3.29s
[14/74] crypto-api... 0.07s
[15/74] data-default... 0.00s
[28/74] ghc... 6.40s                              
[33/74] ghc-prim... 0.86s   
[49/74] primitive... 0.13s  
[65/74] text... 0.19s            
[72/74] vector... 0.61s             
[74/74] zlib... 0.08s 
Found 25 warnings when processing items

Reordering items... 0.07s
Writing tags... 2.90s
Writing names... 0.16s
Writing types... 2.07s
Took 35.99s
building haddock index
finishing up
error: removing extended attribute 'btrfs.compression' from '/nix/store/snqbw3z7nzg4nm1sq0mcxqbj8v7lvxs7-hoogle-local-0.1/share/doc/hoogle/hslogo-16.png': Permission denied

@cdepillabout
Copy link
Member

cdepillabout commented Oct 25, 2019

@v217 Sorry you've been having this issue. I think the debugging you've been doing seems to indicate this isn't a Haskell-related problem, but instead probably something like #29778.

In that issue, some people have been able to patch nix to get rid of this problem. I suggest you attempt to patch nix in a similar way (and ask for help on that issue if you can't figure out how to do this), and see if it fixes the problem with using ghcWithHoogle.

(Of course, as a quick workaround, maybe you could just use ghcWithPackages instead of ghcWithHoogle. That might not trigger the bug you're seeing above.)

I'm going to close this, since it doesn't appear to be a Haskell-related problem (but instead should be #29778), but if you think this actually is Haskell-related, please feel free to re-open it.

@v217
Copy link
Author

v217 commented Oct 25, 2019

Yes I agree, I did not have this problem with the old fstab mount options!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants