f696dda953
Semi-automatic update. These checks were performed: - built on NixOS - found 1.2.4 with grep in /nix/store/dqq7n2sk0fdzn7dnz88yhgms5dq6s39x-uid_wrapper-1.2.4 - found 1.2.4 in filename of file in /nix/store/dqq7n2sk0fdzn7dnz88yhgms5dq6s39x-uid_wrapper-1.2.4 cc "@wkennington"
21 lines
572 B
Nix
21 lines
572 B
Nix
{ stdenv, fetchurl, cmake, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "uid_wrapper-1.2.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
|
sha256 = "1yjhrm3rcyiykkrgpifmig117mzjxrms75kp8gpp8022f59zcq1w";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|