depot/third_party/nixpkgs/pkgs/development/libraries/uid_wrapper/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

20 lines
547 B
Nix

{ lib, stdenv, fetchurl, cmake, pkg-config }:
stdenv.mkDerivation rec {
pname = "uid_wrapper";
version = "1.3.0";
src = fetchurl {
url = "mirror://samba/cwrap/uid_wrapper-${version}.tar.gz";
sha256 = "sha256-9+fBveUzUwBRkxQUckRT4U4CrbthSCS2/ifLuYZUt2I=";
};
nativeBuildInputs = [ cmake pkg-config ];
meta = with lib; {
description = "Wrapper for the user, group and hosts NSS API";
homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
license = licenses.bsd3;
platforms = platforms.all;
};
}