mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 06:05:13 +00:00
25 lines
662 B
Nix
25 lines
662 B
Nix
|
{ stdenv, fetchFromGitHub, autoreconfHook, libtirpc, pkgconfig }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "libnsl-${version}";
|
||
|
version = "1.1.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "thkukuk";
|
||
|
repo = "libnsl";
|
||
|
rev = "libnsl-${version}";
|
||
|
sha256 = "0h8br0gmgw3fp5fmy6bfbj1qlk9hry1ssg25ssjgxbd8spczpscs";
|
||
|
};
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|