ebook-manager/default.nix

16 lines
299 B
Nix
Raw Normal View History

{ nixpkgs, haskellPackages }:
(import ./project.nix nixpkgs) {
packages = {
common = ./common;
backend = ./backend;
};
2018-10-17 23:51:30 +03:00
overrides = self: super: {
generic-lens = nixpkgs.haskell.lib.dontCheck super.generic-lens;
};
2018-08-29 23:03:24 +03:00
tools = with haskellPackages; [
ghcid
hasktags
];
2018-08-02 21:39:08 +03:00
}