2015-04-28 21:41:40 +01:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig }:
|
2015-03-04 22:25:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "socket_wrapper-1.1.3";
|
|
|
|
|
2015-04-28 21:41:40 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
|
|
|
sha256 = "04xfa4yhcaj63ymagmlx77fakrx3wb8ss42m15pmwjaiyi2xndx3";
|
2015-03-04 22:25:03 +00:00
|
|
|
};
|
|
|
|
|
2015-04-21 09:02:32 +01:00
|
|
|
buildInputs = [ cmake pkgconfig (stdenv.cc.libc.out or null) ];
|
2015-03-04 22:25:03 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "a library passing all socket communications through unix sockets";
|
2015-03-05 16:40:55 +00:00
|
|
|
homepage = "https://git.samba.org/?p=socket_wrapper.git;a=summary";
|
2015-03-04 22:25:03 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|