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

20 lines
542 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig }:
2015-03-04 23:25:03 +01:00
stdenv.mkDerivation rec {
2020-03-28 10:34:10 +01:00
name = "socket_wrapper-1.2.4";
2015-03-04 23:25:03 +01:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
2020-03-28 10:34:10 +01:00
sha256 = "07m0g5sxjl15h8h95ppf42mkilp9h1xc9camryg8l9bw8b2v8m4a";
2015-03-04 23:25:03 +01:00
};
2015-09-18 03:28:11 +02:00
nativeBuildInputs = [ cmake pkgconfig ];
2015-03-04 23:25:03 +01: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 23:25:03 +01:00
license = licenses.bsd3;
platforms = platforms.all;
};
}