afpfs-ng: init at 0.8.2

wip/yesman
rnhmjoj 8 years ago
parent 2132cd5913
commit 8546928f69
No known key found for this signature in database
GPG Key ID: 362BB82B7E496B7C
  1. 24
      pkgs/tools/filesystems/afpfs-ng/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, fuse, readline, libgcrypt, gmp }:
stdenv.mkDerivation rec {
name = "afpfs-ng-${version}";
version = "0.8.2";
src = fetchFromGitHub {
owner = "simonvetter";
repo = "afpfs-ng";
rev = "f6e24eb73c9283732c3b5d9cb101a1e2e4fade3e";
sha256 = "125jx1rsqkiifcffyjb05b2s36rllckdgjaf1bay15k9gzhwwldz";
};
buildInputs = [ fuse readline libgcrypt gmp ];
meta = with stdenv.lib; {
homepage = https://github.com/simonvetter/afpfs-ng;
description = "A client implementation of the Apple Filing Protocol";
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
platform = platforms.linux;
};
}

@ -377,6 +377,8 @@ in
afl = callPackage ../tools/security/afl { };
afpfs-ng = callPackage ../tools/filesystems/afpfs-ng/default.nix { };
aha = callPackage ../tools/text/aha { };
ahcpd = callPackage ../tools/networking/ahcpd { };

Loading…
Cancel
Save