python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / hawknl / default.nix
blob6d60d62fcce766b4c87176f2ec5152e4d111db5f
1 {lib, stdenv, fetchurl, unzip}:
3 stdenv.mkDerivation rec {
4   pname = "hawknl";
5   version = "1.68";
7   src = fetchurl {
8     url = "http://urchlay.naptime.net/~urchlay/src/HawkNL${lib.replaceStrings ["."] [""] version}src.zip";
9     sha256 = "11shn2fbxj3w0j77w0234pqyj1368x686kkgv09q5yqhi1cdp028";
10   };
12   nativeBuildInputs = [ unzip ];
14   makefile = "makefile.linux";
16   patchPhase = ''
17     sed -i s/soname,NL/soname,libNL/ src/makefile.linux
18   '';
20   preInstall = ''
21     sed -i s,/usr/local,$out, src/makefile.linux
22     mkdir -p $out/lib $out/include
23   '';
25   meta = {
26     homepage = "http://hawksoft.com/hawknl/";
27     description = "Free, open source, game oriented network API";
28     license = lib.licenses.lgpl2Plus;
29     platforms = lib.platforms.linux;
30   };