1{ stdenv, fetchurl, cmake, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "socket_wrapper-1.1.3";
5
6 src = fetchurl {
7 url = "mirror://samba/cwrap/${name}.tar.gz";
8 sha256 = "04xfa4yhcaj63ymagmlx77fakrx3wb8ss42m15pmwjaiyi2xndx3";
9 };
10
11 buildInputs = [ 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}