stockholm/lib/default.nix

12 lines
192 B
Nix
Raw Normal View History

2016-08-02 18:24:45 +00:00
let
lib = import <nixpkgs/lib> // builtins // {
shell = import ./shell.nix { inherit lib; };
2016-10-13 19:18:40 +00:00
eq = x: y: x == y;
ne = x: y: x != y;
mod = x: y: x - y * (x / y);
2016-08-02 18:24:45 +00:00
};
in
lib