2015-04-28 21:41:40 +01:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig }:
|
2015-03-04 22:25:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-07 15:33:33 +01:00
|
|
|
name = "socket_wrapper-1.2.3";
|
2015-03-04 22:25:03 +00:00
|
|
|
|
2015-04-28 21:41:40 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
2019-04-07 15:33:33 +01:00
|
|
|
sha256 = "1jprm8f7xb91b3yrapdbf51l36j6g038n379akz7ds0dicjh0fh7";
|
2015-03-04 22:25:03 +00:00
|
|
|
};
|
|
|
|
|
2015-09-18 02:28:11 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2015-03-04 22:25:03 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A library passing all socket communications through unix sockets";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = "https://git.samba.org/?p=socket_wrapper.git;a=summary;";
|
2015-03-04 22:25:03 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|