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

21 lines
565 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig }:
2015-03-04 23:19:58 +01:00
stdenv.mkDerivation rec {
name = "nss_wrapper-1.0.3";
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "0bysdijvi9n0jk74iklbfhbp0kvv81a727lcfd5q03q2hkzjfm18";
2015-03-04 23:19:58 +01:00
};
buildInputs = [ cmake pkgconfig ];
2015-03-04 23:19:58 +01:00
meta = with stdenv.lib; {
2015-03-06 12:09:10 +01:00
description = "A wrapper for the user, group and hosts NSS API";
homepage = "https://git.samba.org/?p=nss_wrapper.git;a=summary";
2015-03-04 23:19:58 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}