about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJames Kay <james@hadean.com>2018-02-16 11:41:13 +0000
committerJames Kay <james@hadean.com>2018-03-16 19:46:33 +0000
commit62ab6170523962c2a2b0bb743b5f02715fdeb680 (patch)
tree3df754ed4d2904bc17243061f794c286c697af03
parent494a4ef3ce33d7edc1661273e18cee2a2f10b9d2 (diff)
downloadnixlib-62ab6170523962c2a2b0bb743b5f02715fdeb680.tar
nixlib-62ab6170523962c2a2b0bb743b5f02715fdeb680.tar.gz
nixlib-62ab6170523962c2a2b0bb743b5f02715fdeb680.tar.bz2
nixlib-62ab6170523962c2a2b0bb743b5f02715fdeb680.tar.lz
nixlib-62ab6170523962c2a2b0bb743b5f02715fdeb680.tar.xz
nixlib-62ab6170523962c2a2b0bb743b5f02715fdeb680.tar.zst
nixlib-62ab6170523962c2a2b0bb743b5f02715fdeb680.zip
godot_headers: clean up output path
-rw-r--r--pkgs/development/libraries/godot_headers/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/godot_headers/default.nix b/pkgs/development/libraries/godot_headers/default.nix
index 07f901bf9ac5..aa29d2788fef 100644
--- a/pkgs/development/libraries/godot_headers/default.nix
+++ b/pkgs/development/libraries/godot_headers/default.nix
@@ -9,7 +9,10 @@ stdenv.mkDerivation rec {
     sha256 = "0z562pqm8y8wldmfiya72cvwwpvcfznpl0wypagw50v0f41ilywh";
   };
   buildPhase = "true";
-  installPhase = "cp -r . $out";
+  installPhase = ''
+    mkdir $out
+    cp -r . $out/include
+  '';
   meta = {
     homepage = "https://github.com/GodotNativeTools/godot_headers/";
     description = "Headers for the Godot API supplied by the GDNative module";