summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJames Kay <james@hadean.com>2018-03-28 12:43:45 +0100
committerJames Kay <james@hadean.com>2018-05-02 11:24:32 +0100
commita811d1d6cc11820e3f844dc4ace20bfb132898f9 (patch)
treee5e9f237d121d51d23772a377b63f6b56760d8d8 /pkgs/development
parent76f32d9b41b7c6cc4c4d5e0bfeb5af8fbd2b1661 (diff)
downloadnixlib-a811d1d6cc11820e3f844dc4ace20bfb132898f9.tar
nixlib-a811d1d6cc11820e3f844dc4ace20bfb132898f9.tar.gz
nixlib-a811d1d6cc11820e3f844dc4ace20bfb132898f9.tar.bz2
nixlib-a811d1d6cc11820e3f844dc4ace20bfb132898f9.tar.lz
nixlib-a811d1d6cc11820e3f844dc4ace20bfb132898f9.tar.xz
nixlib-a811d1d6cc11820e3f844dc4ace20bfb132898f9.tar.zst
nixlib-a811d1d6cc11820e3f844dc4ace20bfb132898f9.zip
godot_headers: remove in favour of godot.dev
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/godot_headers/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/libraries/godot_headers/default.nix b/pkgs/development/libraries/godot_headers/default.nix
deleted file mode 100644
index 940882b1742d..000000000000
--- a/pkgs/development/libraries/godot_headers/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, fetchFromGitHub }:
-stdenv.mkDerivation rec {
-  name = "godot_headers";
-  version = "2018-02-09";
-  src = fetchFromGitHub {
-    owner = "GodotNativeTools";
-    repo = "godot_headers";
-    rev = "51bca3bf5d917341f3e15076c5a9191f8a5118ae";
-    sha256 = "0z562pqm8y8wldmfiya72cvwwpvcfznpl0wypagw50v0f41ilywh";
-  };
-  buildPhase = "true";
-  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";
-    license = stdenv.lib.licenses.mit;
-    platforms = stdenv.lib.platforms.all;
-    maintainers = [ stdenv.lib.maintainers.twey ];
-  };
-}