f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
21 lines
595 B
Nix
21 lines
595 B
Nix
{ stdenv, fetchurl, cmake, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "socket_wrapper-1.1.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
|
sha256 = "01gn21kbicwfn3vlnnir8c11z2g54b532bj3qrpdrhgrcm3ifi45";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|