Skip to content

Commit

Permalink
dool: fix plugins not usable
Browse files Browse the repository at this point in the history
Due to a change of dool regarding packaging plugins in
scottchiefbaker/dool#74, the previous
substitution did not work anymore. This PR loads plugins by default
again.
  • Loading branch information
Schmiddiii committed Oct 21, 2024
1 parent 26a699a commit 47d6849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/system/dool/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace dool \
--replace \
"os.path.abspath(os.path.dirname(sys.argv[0])) + '/plugins/'" \
"os.path.dirname(os.path.abspath(__file__)) + '/plugins/'" \
"'$out/share/dool/'"
'';

Expand Down

0 comments on commit 47d6849

Please sign in to comment.