diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 12:18:14 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 12:18:14 +0100 |
commit | a14896f9ed209dd3f9597722e5a5697bd7dbf531 (patch) | |
tree | 089ca5cbbd206d1921f8f6b53292f5bc1902ca5c /c++/window/.nix/derivation.nix | |
parent | 84ecdcbca9e55b1f57fbb832e12ff4fdbb86e7c9 (diff) |
meta: Renamed folder containing source
Diffstat (limited to 'c++/window/.nix/derivation.nix')
-rw-r--r-- | c++/window/.nix/derivation.nix | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/c++/window/.nix/derivation.nix b/c++/window/.nix/derivation.nix deleted file mode 100644 index 67a682c..0000000 --- a/c++/window/.nix/derivation.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ lib -, stdenv -, scons -, clang-tools -, version -, forstio -, xorg -}: - -let - -in stdenv.mkDerivation { - pname = "forstio-window"; - inherit version; - src = ./..; - - enableParallelBuilding = true; - - nativeBuildInputs = [ - scons - clang-tools - ]; - - buildInputs = [ - forstio.core - forstio.async - forstio.io - forstio.codec - xorg.libX11 - xorg.libxcb - ]; - - outputs = ["out" "dev"]; -} |