linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / hawknl / default.nix
blobaacdf0ee933edf71a3ee5fbb12faf6c352777862
1 {lib, stdenv, fetchurl, unzip}:
3 stdenv.mkDerivation {
4   name = "hawknl-1.68";
6   src = fetchurl {
7     url = "http://urchlay.naptime.net/~urchlay/src/HawkNL168src.zip";
8     sha256 = "11shn2fbxj3w0j77w0234pqyj1368x686kkgv09q5yqhi1cdp028";
9   };
11   nativeBuildInputs = [ unzip ];
13   makefile = "makefile.linux";
15   patchPhase = ''
16     sed -i s/soname,NL/soname,libNL/ src/makefile.linux
17   '';
19   preInstall = ''
20     sed -i s,/usr/local,$out, src/makefile.linux
21     mkdir -p $out/lib $out/include
22   '';
24   meta = {
25     homepage = "http://hawksoft.com/hawknl/";
26     description = "Free, open source, game oriented network API";
27     license = lib.licenses.lgpl2Plus;
28     platforms = lib.platforms.linux;
29   };