21 lines
574 B
Nix
21 lines
574 B
Nix
|
{ stdenv, fetchurl, cmake, pkgconfig }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "resolv_wrapper-1.1.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
||
|
sha256 = "1h76155pnmd3pqxfyi00q0fg6v45ad9dhnjsqcsbzg18s626wyad";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "a wrapper for the user, group and hosts NSS API";
|
||
|
homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = with maintainers; [ wkennington ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|