Problem: when nixpkgs bumps racket-minimal things break
sjmackenzie opened this issue · 1 comments
sjmackenzie commented
It's a silent breakage (well hydra catches it) but maybe we're pinning in too many places? Instead we might want to rely more on channels for example
{ nixpkgs ? fetchTarball channel:nixos-unstable
, pkgs ? import nixpkgs {} }:
...
----
{ nixpkgs ? fetchTarball channel:nixos-stable
, pkgs ? import nixpkgs {} }:
...
----
{ nixpkgs ? fetchTarball channel:nixos-18.09
, pkgs ? import nixpkgs {} }:
...
etc.
sjmackenzie commented
related to #229