X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=default.nix;h=c523b5693d39f57b4d90b7bba9a917618befd2f2;hp=d4d10211e692af99ee9ab3f2a010a9c85302ae62;hb=b1001612ef9a239f227c426e54cbc8b38b80fb73;hpb=e51c30bfbb1bd5d94e4a198eb43da654c737f2e1 diff --git a/default.nix b/default.nix index d4d10211..c523b569 100644 --- a/default.nix +++ b/default.nix @@ -1,96 +1,2 @@ -# nix-shell -A xonotic -{ - nixpkgs ? , - pkgs ? (import nixpkgs) {} -}: -with pkgs; -let - VERSION = "0.8.2"; - targets = rec { - xonotic = stdenv.mkDerivation rec { - - XON_NO_DAEMON = true; - XON_NO_RADIANT = true; - - XON_NO_QCC = true; - QCC = "${gmqcc}/gmqcc"; - - version = VERSION; - - name = "xonotic-${version}"; - - src = lib.sourceFilesBySuffices ./. [ - ".txt" ".cmake" ".in" - ".c" ".cpp" ".h" - ".inc" ".def" - ".qc" ".qh" - ".sh" - ]; - - enableParallelBuilding = true; - - cmakeFlags = [ - "-DDOWNLOAD_MAPS=0" - ]; - - nativeBuildInputs = [ - cmake # for building - git # for versioning - # unzip # for downloading maps - ]; - - buildInputs = [ - openssl # for d0_blind_id - SDL2 # for darkplaces - ]; - - runtimeInputs = [ - zlib - curl - - libjpeg - libpng - - freetype - - libogg - libtheora - libvorbis - ]; - - shellHook = '' - export LD_LIBRARY_PATH=''${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}${lib.makeLibraryPath runtimeInputs} - ''; - - installPhase = '' - mkdir $out - - exe=darkplaces/darkplaces - rpath=$(patchelf --print-rpath $exe) - rpath_firstparty=$out/d0_blind_id - rpath_thirdparty=${lib.makeLibraryPath runtimeInputs} - rpath=''${rpath:+$rpath:}$rpath_firstparty:$rpath_thirdparty - patchelf --set-rpath $rpath $exe - - cp -r . $out - ''; - - dontPatchELF = true; - }; - - gmqcc = stdenv.mkDerivation rec { - version = "xonotic-${VERSION}"; - - name = "gmqcc-${version}"; - - src = ./gmqcc; - - enableParallelBuilding = true; - - installPhase = '' - mkdir $out - cp -r . $out - ''; - }; - }; -in targets +{ pkgs ? import {}, cc ? null }@args: +pkgs.callPackage ./derivation.nix args