1{ stdenv, fetchurl, cmake, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "socket_wrapper-1.2.4";
5
6 src = fetchurl {
7 url = "mirror://samba/cwrap/${name}.tar.gz";
8 sha256 = "07m0g5sxjl15h8h95ppf42mkilp9h1xc9camryg8l9bw8b2v8m4a";
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 platforms = platforms.all;
18 };
19}