Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 19 lines 542 B view raw
1{ stdenv, fetchurl, cmake, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name = "socket_wrapper-1.2.1"; 5 6 src = fetchurl { 7 url = "mirror://samba/cwrap/${name}.tar.gz"; 8 sha256 = "1yi1ry3skkbrhvm6g72ripz99diqxnd09v0bx3dlb5sfgcl0wjax"; 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}