about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJames Kay <james@hadean.com>2018-02-14 17:43:33 +0000
committerJames Kay <james@hadean.com>2018-03-16 19:46:33 +0000
commit494a4ef3ce33d7edc1661273e18cee2a2f10b9d2 (patch)
tree3d4ee80977c8f8154c2c4b3164e582b9b96e581f
parentef7a25fcc0063390a108049e69148fdb36430668 (diff)
downloadnixlib-494a4ef3ce33d7edc1661273e18cee2a2f10b9d2.tar
nixlib-494a4ef3ce33d7edc1661273e18cee2a2f10b9d2.tar.gz
nixlib-494a4ef3ce33d7edc1661273e18cee2a2f10b9d2.tar.bz2
nixlib-494a4ef3ce33d7edc1661273e18cee2a2f10b9d2.tar.lz
nixlib-494a4ef3ce33d7edc1661273e18cee2a2f10b9d2.tar.xz
nixlib-494a4ef3ce33d7edc1661273e18cee2a2f10b9d2.tar.zst
nixlib-494a4ef3ce33d7edc1661273e18cee2a2f10b9d2.zip
godot_headers: init at 51bca3bf5d917341f3e15076c5a9191f8a5118ae
-rw-r--r--pkgs/development/libraries/godot_headers/default.nix20
-rw-r--r--pkgs/top-level/all-packages.nix1
2 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/godot_headers/default.nix b/pkgs/development/libraries/godot_headers/default.nix
new file mode 100644
index 000000000000..07f901bf9ac5
--- /dev/null
+++ b/pkgs/development/libraries/godot_headers/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchFromGitHub }:
+stdenv.mkDerivation rec {
+  name = "godot_headers";
+  version = "51bca3bf5d917341f3e15076c5a9191f8a5118ae";
+  src = fetchFromGitHub {
+    owner = "GodotNativeTools";
+    repo = "godot_headers";
+    rev = version;
+    sha256 = "0z562pqm8y8wldmfiya72cvwwpvcfznpl0wypagw50v0f41ilywh";
+  };
+  buildPhase = "true";
+  installPhase = "cp -r . $out";
+  meta = {
+    homepage = "https://github.com/GodotNativeTools/godot_headers/";
+    description = "Headers for the Godot API supplied by the GDNative module";
+    license = stdenv.lib.licenses.mit;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.twey ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index e8e6b9008295..e7119965b029 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2560,6 +2560,7 @@ with pkgs;
   gocryptfs = callPackage ../tools/filesystems/gocrypfs { };
 
   godot = callPackage ../development/tools/godot {};
+  godot_headers = callPackage ../development/libraries/godot_headers {};
 
   goklp = callPackage ../tools/networking/goklp {};