summary refs log blame commit diff
path: root/pkgs/development/libraries/seasocks/default.nix
blob: 8c5b4e87d9bbf4f390b15915173f030bef43fcd3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                      


                         
                    




                          
                                                                    




                                
                    
                                                         





                                                                  
{ lib, stdenv, fetchFromGitHub, cmake, python, zlib }:

stdenv.mkDerivation rec {
  pname = "seasocks";
  version = "1.4.4";

  src = fetchFromGitHub {
    owner = "mattgodbolt";
    repo = pname;
    rev = "v${version}";
    sha256 = "1f9a3mx3yjmr5qry4rc1c7mrx3348iifxm7d8sj8yd41kqnzmfv4";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ zlib python ];

  meta = with lib; {
    homepage = "https://github.com/mattgodbolt/seasocks";
    description = "Tiny embeddable C++ HTTP and WebSocket server";
    license = licenses.bsd2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ fredeb ];
  };
}