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

20 lines
526 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkg-config }:
2015-09-18 02:28:40 +01:00
stdenv.mkDerivation rec {
2020-03-28 09:18:14 +00:00
name = "resolv_wrapper-1.1.6";
2015-09-18 02:28:40 +01:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
2020-03-28 09:18:14 +00:00
sha256 = "13k76l4s0v032xyyaf19qw6p4qc81ybx1wynkz2pzjhiljazsdpa";
2015-09-18 02:28:40 +01:00
};
nativeBuildInputs = [ cmake pkg-config ];
2015-09-18 02:28:40 +01:00
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 02:28:40 +01:00
license = licenses.bsd3;
platforms = platforms.linux;
2015-09-18 02:28:40 +01:00
};
}