Prefer builtins.path
Thanks to the Nix anti-patterns documented here... https://nix.dev/anti-patterns/language.html#reproducability-referencing-top-level-directory-with ...I'm cleaning up some of my Nix expressions. Read the article for more context.
This commit is contained in:
parent
155dff562a
commit
e4ddc3ba75
12 changed files with 13 additions and 15 deletions
|
@ -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
|
||||
'';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue