this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 7 lines 293 B view raw
1{ nixpkgs ? import <nixpkgs> {}, compiler ? "default" }: 2let 3 inherit (nixpkgs) pkgs; 4 drv = import ./default.nix { inherit nixpkgs compiler; }; 5 drvWithTools = pkgs.haskell.lib.addBuildDepends drv [ pkgs.cabal-install ]; 6in 7 if pkgs.lib.inNixShell then drvWithTools.env else drvWithTools