7 lines
198 B
Nix
7 lines
198 B
Nix
{ pkgs ? import <nixpkgs> {}}:
|
|
|
|
let
|
|
affection = pkgs.haskellPackages.callCabal2nix "affection" (gitignore ./.) {};
|
|
gitignore = dir: pkgs.nix-gitignore.gitignoreSource [] dir;
|
|
in
|
|
affection.env
|