Skip to content

Commit

Permalink
libnfs: init at 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Sep 27, 2017
1 parent 1a681a6 commit 97e586b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/development/libraries/libnfs/default.nix
@@ -0,0 +1,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 bsd gpl3];
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -9143,6 +9143,8 @@ with pkgs;

libnfc = callPackage ../development/libraries/libnfc { };

libnfs = callPackage ../development/libraries/libnfs { };

libnfsidmap = callPackage ../development/libraries/libnfsidmap { };

libnice = callPackage ../development/libraries/libnice { };
Expand Down

0 comments on commit 97e586b

Please sign in to comment.