2015-04-28 23:41:40 +03:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig }:
|
2015-03-05 01:19:58 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 19:13:06 +03:00
|
|
|
name = "nss_wrapper-1.1.3";
|
2015-03-05 01:19:58 +03:00
|
|
|
|
2015-04-28 23:41:40 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
2018-02-27 19:13:06 +03:00
|
|
|
sha256 = "18rsaw8r8xwn5003arc7xw8iliwbmzxfxgacmp6lhsdwqla4rf69";
|
2015-03-05 01:19:58 +03:00
|
|
|
};
|
|
|
|
|
2017-09-06 00:26:13 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cmake ];
|
2015-03-05 01:19:58 +03:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-03-06 14:09:10 +03:00
|
|
|
description = "A wrapper for the user, group and hosts NSS API";
|
2017-08-01 23:03:30 +03:00
|
|
|
homepage = "https://git.samba.org/?p=nss_wrapper.git;a=summary;";
|
2015-03-05 01:19:58 +03:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|