Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 20 lines 572 B view raw
1{ stdenv, fetchurl, cmake, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name = "uid_wrapper-1.2.4"; 5 6 src = fetchurl { 7 url = "mirror://samba/cwrap/${name}.tar.gz"; 8 sha256 = "1yjhrm3rcyiykkrgpifmig117mzjxrms75kp8gpp8022f59zcq1w"; 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}