uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
25
pkgs/applications/networking/utahfs/default.nix
Normal file
25
pkgs/applications/networking/utahfs/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ buildGoPackage, lib, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "utahfs";
|
||||
version = "1.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "cloudflare";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1hpwch5fsqlxwpk5afawa1k5s0bx5c1cw0hvdllp7257lgly19fb";
|
||||
};
|
||||
|
||||
goPackagePath = "github.com/cloudflare/utahfs";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/cloudflare/utahfs";
|
||||
description =
|
||||
"Encrypted storage system that provides a user-friendly FUSE drive backed by cloud storage";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.snglth ];
|
||||
platforms = platforms.unix;
|
||||
# does not build with go 1.17: https://github.com/cloudflare/utahfs/issues/46
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue