summary refs log tree commit diff
path: root/pkgs/development/libraries/libnfs/default.nix
blob: ab59867283e106a0edc332bfbbe6cd00fade276a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchFromGitHub, autoreconfHook }:

stdenv.mkDerivation rec {
  name = "libnfs-${version}";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "sahlberg";
    repo = "libnfs";
    rev = "libnfs-${version}";
    sha256 = "1xd1xb09jxwmx7hblv0f9gxv7i1glk3nbj2vyq50zpi158lnf2mb";
  };

  nativeBuildInputs = [ autoreconfHook ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "NFS client library";
    homepage    = https://github.com/sahlberg/libnfs;
    license     = with licenses; [ lgpl2 gpl3];
    maintainers = with maintainers; [ peterhoeg ];
    platforms   = platforms.unix;
  };
}