forked from mirrors/nixpkgs
goofys: init at unstable-2021-03-26
This commit is contained in:
parent
26a88ecce8
commit
22ae7ededa
34
pkgs/tools/filesystems/goofys/default.nix
Normal file
34
pkgs/tools/filesystems/goofys/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule {
|
||||
pname = "goofys";
|
||||
version = "unstable-2021-03-26";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kahing";
|
||||
repo = "goofys";
|
||||
# Same as v0.24.0 but migrated to Go modules
|
||||
rev = "0c993271269b539196330a18716a33fbeeebd624";
|
||||
sha256 = "18is5sv2a9wmsm0qpakly988z1qyl2b2hf2105lpxrgl659sf14p";
|
||||
};
|
||||
|
||||
vendorSha256 = "15yq0msh9icxd5n2zkkqrlwxifizhpa99d4aznv8clg32ybs61fj";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
# Tests are using networking
|
||||
postPatch = ''
|
||||
rm internal/*_test.go
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/kahing/goofys";
|
||||
description = "A high-performance, POSIX-ish Amazon S3 file system written in Go.";
|
||||
license = [ lib.licenses.mit ];
|
||||
maintainers = [ lib.maintainers.adisbladis ];
|
||||
};
|
||||
|
||||
}
|
|
@ -5315,6 +5315,8 @@ in
|
|||
|
||||
go-mtpfs = callPackage ../tools/filesystems/go-mtpfs { };
|
||||
|
||||
goofys = callPackage ../tools/filesystems/goofys { };
|
||||
|
||||
go-sct = callPackage ../tools/X11/go-sct { };
|
||||
|
||||
# rename to upower-notify?
|
||||
|
|
Loading…
Reference in a new issue