Skip to content

Commit

Permalink
Update nix flake
Browse files Browse the repository at this point in the history
  • Loading branch information
agagniere committed Oct 9, 2024
1 parent ed09515 commit 72a2251
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@
package = stdenv.mkDerivation
{
name = "blackmagic";
src = self;
installPhase =
"mkdir --parents $out/include && cp -r include $out";
src = ./.;
installPhase = ''
runHook preInstall
mkdir --parents $out/include && cp -r include $out;
runHook postInstall
'';
};
in
{
Expand Down

0 comments on commit 72a2251

Please sign in to comment.