Skip to content

Instantly share code, notes, and snippets.

@juhp
juhp / gist:8cf70c3e00509347ff5e5f4bbfad74c5
Created November 28, 2024 08:06
stack --resolver lts-22.43 build aeson --verbose
Version 2.15.7 x86_64
Compiled with:
- Cabal-3.10.3.0
- Cabal-syntax-3.10.3.0
- Glob-0.10.2
- OneTuple-0.4.2
- QuickCheck-2.14.3
- StateVar-1.2.2
- aeson-2.1.2.1
- aeson-warning-parser-0.1.1
@juhp
juhp / gist:e4f92e6df99524da0d7df72afe2470d4
Created November 29, 2024 04:28
stack-3.1.1 --resolver lts-22.43 build aeson --verbose
This file has been truncated, but you can view the full file.
Version 3.1.1 x86_64
Compiled with:
- Cabal-3.10.3.0
- Cabal-syntax-3.10.3.0
- Glob-0.10.2
- OneTuple-0.4.2
- QuickCheck-2.14.3
- StateVar-1.2.2
- aeson-2.1.2.1
- aeson-warning-parser-0.1.1
@juhp
juhp / flake.nix
Last active November 21, 2025 19:29
nixos container
{
description = "NixOS container image";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
lib = nixpkgs.lib;