all repos — x @ 434bbe77faa4b87eace015c800bf3cfdfe39042a

Experiments and stuff

ci.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs ? (
    let
      sources = import ./npins;
    in
    import sources.nixpkgs { }
  )
}:
pkgs.mkShell {
  packages = with pkgs; [
    go
    just
  ];
}