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

21 lines
595 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig }:
2015-03-04 22:25:03 +00:00
stdenv.mkDerivation rec {
name = "socket_wrapper-1.1.9";
2015-03-04 22:25:03 +00:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "1d7bbr4j1ybq2dm6q3f6ncv36qqxyjygq4z1q0hvadlcaw7pj79c";
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;
};
}