nixpkgs/pkgs/development/libraries/socket_wrapper/default.nix
R. RyanTM 13d7a84160 socket_wrapper: 1.1.9 -> 1.2.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/socket_wrapper/versions
2018-11-18 00:24:31 -08:00

21 lines
595 B
Nix

{ stdenv, fetchurl, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "socket_wrapper-1.2.1";
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "1yi1ry3skkbrhvm6g72ripz99diqxnd09v0bx3dlb5sfgcl0wjax";
};
nativeBuildInputs = [ cmake pkgconfig ];
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;
};
}