diff options
| author | Claudius Holeksa <mail@keldu.de> | 2023-05-09 17:58:30 +0200 |
|---|---|---|
| committer | Claudius Holeksa <mail@keldu.de> | 2023-05-09 17:58:30 +0200 |
| commit | 2e8ee05aee8c03aaf1f991b8403a6980eeb1f4fc (patch) | |
| tree | 14aabbe752f00f218eb3a01df2e1f155fde3e409 /.nix | |
| parent | a178b64a681dc0a381835ab567853c132753902f (diff) | |
| download | mini-test-2e8ee05aee8c03aaf1f991b8403a6980eeb1f4fc.tar.gz | |
Fixed build and install issues. Confirmed install and build on nix
Diffstat (limited to '.nix')
| -rw-r--r-- | .nix/derivation.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.nix/derivation.nix b/.nix/derivation.nix index 3d2d7d0..23dd938 100644 --- a/.nix/derivation.nix +++ b/.nix/derivation.nix @@ -15,5 +15,9 @@ stdenvNoCC.mkDerivation { gnumake ]; - output = [ "out" "dev" ]; + installPhase = '' + PREFIX=$out make install + ''; + + output = [ "out" ]; } |
