diff options
Diffstat (limited to 'c++/window-opengl/.nix/derivation.nix')
-rw-r--r-- | c++/window-opengl/.nix/derivation.nix | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/c++/window-opengl/.nix/derivation.nix b/c++/window-opengl/.nix/derivation.nix deleted file mode 100644 index 40c25bb..0000000 --- a/c++/window-opengl/.nix/derivation.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ lib -, stdenv -, scons -, clang-tools -, version -, forstio -, xorg -, libGL -}: - -let - -in stdenv.mkDerivation { - pname = "forstio-window-opengl"; - inherit version; - src = ./..; - - enableParallelBuilding = true; - - nativeBuildInputs = [ - scons - clang-tools - ]; - - buildInputs = [ - forstio.core - forstio.async - forstio.io - forstio.codec - forstio.window - xorg.libX11 - xorg.libxcb - libGL - ]; - - outputs = ["out" "dev"]; -} |