nixpkgs/pkgs/development/libraries/socket_wrapper/default.nix

21 lines
594 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig }:
2015-03-04 22:25:03 +00:00
stdenv.mkDerivation rec {
2015-11-08 02:51:46 +00:00
name = "socket_wrapper-1.1.5";
2015-03-04 22:25:03 +00:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
2015-11-08 02:51:46 +00:00
sha256 = "01gn21kbicwfn3vlnnir8c11z2g54b532bj3qrpdrhgrcm3ifi45";
2015-03-04 22:25:03 +00:00
};
2015-09-18 01:28:11 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
2015-03-04 22:25:03 +00:00
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";
2015-03-04 22:25:03 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}