1{ stdenv, fetchurl, cmake, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "socket_wrapper-1.1.5";
5
6 src = fetchurl {
7 url = "mirror://samba/cwrap/${name}.tar.gz";
8 sha256 = "01gn21kbicwfn3vlnnir8c11z2g54b532bj3qrpdrhgrcm3ifi45";
9 };
10
11 nativeBuildInputs = [ cmake pkgconfig ];
12
13 meta = with stdenv.lib; {
14 description = "A library passing all socket communications through unix sockets";
15 homepage = "https://git.samba.org/?p=socket_wrapper.git;a=summary;";
16 license = licenses.bsd3;
17 maintainers = with maintainers; [ wkennington ];
18 platforms = platforms.all;
19 };
20}