blob: 60c52797002860ff83740c4e9cdabc1952740327 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libnfs";
version = "6.0.2";
src = fetchFromGitHub {
owner = "sahlberg";
repo = "libnfs";
tag = "libnfs-${finalAttrs.version}";
hash = "sha256-uD7PtW2rcpGVzqD6U0DXK1gUaCKlKh+p+i6CW6jLGdw=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DENABLE_MULTITHREADING=ON"
];
enableParallelBuilding = true;
meta = {
description = "NFS client library";
homepage = "https://github.com/sahlberg/libnfs";
license = with lib.licenses; [
lgpl2
bsd2
gpl3
];
maintainers = with lib.maintainers; [ peterhoeg ];
platforms = lib.platforms.unix;
};
})
|