afpfs-ng: init at 0.8.2
This commit is contained in:
parent
2132cd5913
commit
8546928f69
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/filesystems/afpfs-ng/default.nix
Normal file
24
pkgs/tools/filesystems/afpfs-ng/default.nix
Normal file
|
@ -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…
Reference in a new issue