1{ stdenv, fetchurl, cmake, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "resolv_wrapper-1.1.5";
5
6 src = fetchurl {
7 url = "mirror://samba/cwrap/${name}.tar.gz";
8 sha256 = "0v5hw5ipq2rrpraf4ck4r9w9xihmgwzkpf5wgppz7gc52fmgv2g9";
9 };
10
11 nativeBuildInputs = [ cmake pkgconfig ];
12
13 meta = with stdenv.lib; {
14 description = "A wrapper for the user, group and hosts NSS API";
15 homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
16 license = licenses.bsd3;
17 maintainers = with maintainers; [ wkennington ];
18 platforms = platforms.linux;
19 };
20}