nixpkgs/pkgs/development/libraries/socket_wrapper/default.nix
Vladimír Čunát 333d69a5f0 Merge staging into closure-size
The most complex problems were from dealing with switches reverted in
the meantime (gcc5, gmp6, ncurses6).
It's likely that darwin is (still) broken nontrivially.
2015-11-20 14:32:58 +01:00

22 lines
644 B
Nix

{ stdenv, fetchurl, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "socket_wrapper-1.1.5";
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "01gn21kbicwfn3vlnnir8c11z2g54b532bj3qrpdrhgrcm3ifi45";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ (stdenv.cc.libc.out or null) ];
meta = with stdenv.lib; {
description = "a library passing all socket communications through unix sockets";
homepage = "https://git.samba.org/?p=socket_wrapper.git;a=summary";
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}