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

22 lines
593 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.1.5";
2015-03-04 23:19:58 +01:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "0srk7hffhkwl811q4pjy0n0gm8rh26akb2bh6avcpbns0zzn9ldn";
2015-03-04 23:19:58 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake ];
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;
};
}