Roman Kuznetsov
Roman Kuznetsov
That would be just a great feature. And it theoretically should not be complicated. Any chance on prioritizing the support for PlantUML in the future?
I am using `concourse/concourse:7.9.1` and my pipeline looks like this trying to build and push multi-arch container images: ```yaml resources: - name: repo type: git source: uri: ....git branch: ((branch))...
ok, after a not so short research the following change fixed my problem: ```yaml - put: core-service-image params: image: image/image version: ((.:version)) get_params: format: oci ``` Now all layers of...
@Gabriel439, so far I ended up including additional `hoogle.nix`: ```nix { compiler ? "ghc821" }: let bootstrap = import {}; nixpkgs = builtins.fromJSON (builtins.readFile ./nixpkgs.json); src = bootstrap.fetchFromGitHub { owner...
@cumber thanks a lot! I ended up extending your `shell.nix` slightly to pin `nixpkgs`. So now it looks much cleaner and most importantly uses `cabal` packages :+1: ```nix { compiler...