nss_wrapper: Add derivation

This commit is contained in:
William A. Kennington III 2015-03-04 14:19:58 -08:00
parent 7b517a4b29
commit 3e4fa69a90
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchgit, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "nss_wrapper-1.0.3";
src = fetchgit {
url = "git://git.samba.org/nss_wrapper.git";
rev = "refs/tags/${name}";
sha256 = "1jka6d873vhvfr7k378xvgxmbpka87w33iq6b91ynwg36pz53ifw";
};
buildInputs = [ cmake pkgconfig ];
meta = with stdenv.lib; {
description = "a wrapper for the user, group and hosts NSS API";
homepage = https://git.samba.org/?p=nss_wrapper.git;a=summary;
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}

View File

@ -6907,6 +6907,8 @@ let
nss = lowPrio (callPackage ../development/libraries/nss { });
nss_wrapper = callPackage ../development/libraries/nss_wrapper { };
nssTools = callPackage ../development/libraries/nss {
includeTools = true;
};