mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
25 lines
645 B
Nix
25 lines
645 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, libtirpc, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libnsl";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thkukuk";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1dayj5i4bh65gn7zkciacnwv2a0ghm6nn58d78rsi4zby4lyj5w5";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ libtirpc ];
|
|
|
|
meta = with stdenv.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;
|
|
};
|
|
}
|