8930a45403
Still needs QQ.
12 lines
329 B
Nix
12 lines
329 B
Nix
{ pkgs ? import <nixpkgs> { config.allowUnfree = true; }
|
|
, src ? builtins.filterSource (path: type:
|
|
type != "unknown" &&
|
|
baseNameOf path != ".git" &&
|
|
baseNameOf path != "result" &&
|
|
baseNameOf path != "dist") ./.
|
|
}:
|
|
pkgs.haskellPackages.buildLocalCabalWithArgs {
|
|
name = "servant";
|
|
inherit src;
|
|
args = {};
|
|
}
|