diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/url-blocker/default.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/url-blocker/default.nix b/tools/url-blocker/default.nix index d6a098851b88..5d1b8cd1666a 100644 --- a/tools/url-blocker/default.nix +++ b/tools/url-blocker/default.nix @@ -12,9 +12,7 @@ let # This is the systemd service unit service = pkgs.stdenv.mkDerivation { name = "url-blocker"; - src = ./.; - buildInputs = with pkgs; [ - ]; + src = builtins.path { path = ./.; name = "url-blocker"; }; buildPhase = '' ${ghc}/bin/ghc Main.hs ''; |