2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, cmake, pkg-config }:
|
2015-09-17 18:28:40 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-03-09 07:36:37 -08:00
|
|
|
name = "resolv_wrapper-1.1.7";
|
2015-09-17 18:28:40 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
2021-03-09 07:36:37 -08:00
|
|
|
sha256 = "sha256-Rgrn/V5TSFvn3ZmlXFki8csWNrnoghmB1JrRZQfIoHQ=";
|
2015-09-17 18:28:40 -07:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2015-09-17 18:28:40 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A wrapper for the user, group and hosts NSS API";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
|
2015-09-17 18:28:40 -07:00
|
|
|
license = licenses.bsd3;
|
2017-09-22 07:24:29 -07:00
|
|
|
platforms = platforms.linux;
|
2015-09-17 18:28:40 -07:00
|
|
|
};
|
|
|
|
}
|