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