mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
13d7a84160
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
21 lines
595 B
Nix
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;
|
|
};
|
|
}
|