nixpkgs/pkgs/development/libraries/resolv_wrapper/default.nix
Ryan Mulligan 908cf0784f resolv_wrapper: 1.1.3 -> 1.1.5
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.1.5 with grep in /nix/store/wfbq0x34zgwrazsib5pv5wbv1zb1yrpk-resolv_wrapper-1.1.5
- found 1.1.5 in filename of file in /nix/store/wfbq0x34zgwrazsib5pv5wbv1zb1yrpk-resolv_wrapper-1.1.5

cc "@wkennington"
2018-02-28 14:21:17 +00:00

21 lines
577 B
Nix

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