Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
fix: don't move lib/ to dev output
Browse files Browse the repository at this point in the history
  • Loading branch information
aakropotkin committed Aug 16, 2023
1 parent eb55aa7 commit 8f0e0b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg-fun.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
'';
postInstall = ''
mkdir -p "$dev";
mv "$out/lib" "$out/include" "$dev/";
mv "$out/include" "$dev/";
ln -s "$out/lib" "$dev/lib";
'';
# Checks require internet
doCheck = false;
Expand Down

0 comments on commit 8f0e0b9

Please sign in to comment.