depot/third_party/nixpkgs/pkgs/development/libraries/libnsl/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
645 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtirpc, pkg-config }:
stdenv.mkDerivation rec {
pname = "libnsl";
version = "1.3.0";
src = fetchFromGitHub {
owner = "thkukuk";
repo = pname;
rev = "v${version}";
sha256 = "1dayj5i4bh65gn7zkciacnwv2a0ghm6nn58d78rsi4zby4lyj5w5";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libtirpc ];
meta = with lib; {
description = "Client interface library for NIS(YP) and NIS+";
homepage = "https://github.com/thkukuk/libnsl";
license = licenses.lgpl21;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}