nixpkgs/pkgs/development/libraries/uid_wrapper/default.nix

21 lines
572 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig }:
2015-03-04 22:47:37 +00:00
stdenv.mkDerivation rec {
name = "uid_wrapper-1.2.4";
2015-03-04 22:47:37 +00:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "1yjhrm3rcyiykkrgpifmig117mzjxrms75kp8gpp8022f59zcq1w";
2015-03-04 22:47:37 +00:00
};
2015-08-29 00:53:48 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
2015-03-04 22:47:37 +00:00
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;";
2015-03-04 22:47:37 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}