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