diff options
author | William Carroll <wpcarro@gmail.com> | 2020-07-02T12·28+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-07-02T12·28+0100 |
commit | e4ddc3ba75f75b6df0d11ccc62b75a346d0e3846 (patch) | |
tree | c2cac178e1085a9500f3b2d32fcab2058931d0f7 /website/habits | |
parent | 155dff562ac5c9d893ace858c4a41a2d89955097 (diff) |
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.
Diffstat (limited to 'website/habits')
-rw-r--r-- | website/habits/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/habits/default.nix b/website/habits/default.nix index e2655846e0cf..71329c7963d5 100644 --- a/website/habits/default.nix +++ b/website/habits/default.nix @@ -2,7 +2,7 @@ pkgs.stdenv.mkDerivation { name = "habits-webpage"; - src = ../../org; + src = builtins.path { path ../../org; name = "org"; }; buildInputs = []; buildPhase = '' ${pkgs.pandoc}/bin/pandoc $src/habits.org -o index.html |