2015-09-18 02:28:40 +01:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 21:11:06 +00:00
|
|
|
name = "resolv_wrapper-1.1.5";
|
2015-09-18 02:28:40 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
2018-02-27 21:11:06 +00:00
|
|
|
sha256 = "0v5hw5ipq2rrpraf4ck4r9w9xihmgwzkpf5wgppz7gc52fmgv2g9";
|
2015-09-18 02:28:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A wrapper for the user, group and hosts NSS API";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
|
2015-09-18 02:28:40 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2017-09-22 15:24:29 +01:00
|
|
|
platforms = platforms.linux;
|
2015-09-18 02:28:40 +01:00
|
|
|
};
|
|
|
|
}
|