nixpkgs/pkgs/development/libraries/uid_wrapper/default.nix
Ryan Mulligan f696dda953 uid_wrapper: 1.2.0 -> 1.2.4
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"
2018-02-28 11:50:56 +01:00

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;
};
}