arion/nix/overlay.nix
Robert Hensing 76ca66f59c Pin and make the project structure conform more to todomvc-nix
This makes the Nix files work like todomvc-nix but a little simplified.
Also it pins nixpkgs because for development (tests), you need -unstable
instead of release-18.09 so that's automatic now.
2019-01-20 17:11:18 +01:00

5 lines
103 B
Nix

self: super: {
arion = super.callPackage ../arion.nix {};
tests = super.callPackage ../tests {};
}