packages feed

libnix-0.2.0.1: shell.nix

((import <nixpkgs> {}).haskellPackages.override {
  overrides = self:
    super:
      {
        my-pkg = let
          buildDepends = with self;
          [
            aeson
            errors
            filepath
            protolude
            tasty
            tasty-hunit
          ];
        in super.mkDerivation {
          pname = "pkg-env";
          src = "/dev/null";
          version = "none";
          license = "none";
          inherit buildDepends;
          buildTools = with self;
          [
            ghcid
            cabal-install
            hpack
            hscolour
            (hoogleLocal {
              packages = buildDepends;
            })
          ];
        };
      };
}).my-pkg.env