1{ stdenv, fetchurl, cmake, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "uid_wrapper-1.1.1";
5
6 src = fetchurl {
7 url = "mirror://samba/cwrap/${name}.tar.gz";
8 sha256 = "0y033cjs0kwmpx70xc4wh789vk9rw6bziizs28h50ad7lyyvx5b9";
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.all;
19 };
20}