Advent of Code Solutions
advent-of-code aoc
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

flake.nix: lock nixpkgs at 73a4cfc54d7ce448b38660ea8a88643420082e74

After this commit, `escript` scripts are broken due to changes to
the patch-shebang build hook.

yemou 7b830410 0fd36abf

+10 -7
+4 -4
flake.lock
··· 2 2 "nodes": { 3 3 "nixpkgs": { 4 4 "locked": { 5 - "lastModified": 1751984180, 6 - "narHash": "sha256-LwWRsENAZJKUdD3SpLluwDmdXY9F45ZEgCb0X+xgOL0=", 5 + "lastModified": 1749190010, 6 + "narHash": "sha256-p/S7Ly48pomNt5iVb9SjFnUZ1CdqsPO4Vw7dQhzKvI8=", 7 7 "owner": "nixos", 8 8 "repo": "nixpkgs", 9 - "rev": "9807714d6944a957c2e036f84b0ff8caf9930bc0", 9 + "rev": "73a4cfc54d7ce448b38660ea8a88643420082e74", 10 10 "type": "github" 11 11 }, 12 12 "original": { 13 13 "owner": "nixos", 14 - "ref": "nixos-unstable", 15 14 "repo": "nixpkgs", 15 + "rev": "73a4cfc54d7ce448b38660ea8a88643420082e74", 16 16 "type": "github" 17 17 } 18 18 },
+6 -3
flake.nix
··· 2 2 description = "Advent of Code"; 3 3 4 4 inputs = { 5 - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; 5 + # nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; 6 + nixpkgs.url = "github:nixos/nixpkgs?rev=73a4cfc54d7ce448b38660ea8a88643420082e74"; 6 7 }; 7 8 8 9 outputs = ··· 16 17 devShells = forSystems (pkgs: { 17 18 "2015" = pkgs.mkShellNoCC { 18 19 buildInputs = with pkgs; [ 19 - erlang 20 - erlfmt 20 + (with beamMinimalPackages; [ 21 + erlang 22 + erlfmt 23 + ]) 21 24 ]; 22 25 }; 23 26 });