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

21 lines
577 B
Nix
Raw Normal View History

2015-09-18 01:28:40 +00:00
{ stdenv, fetchurl, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "resolv_wrapper-1.1.5";
2015-09-18 01:28:40 +00:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "0v5hw5ipq2rrpraf4ck4r9w9xihmgwzkpf5wgppz7gc52fmgv2g9";
2015-09-18 01:28:40 +00:00
};
nativeBuildInputs = [ cmake pkgconfig ];
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-09-18 01:28:40 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.linux;
2015-09-18 01:28:40 +00:00
};
}