utahfs: remove

authored by

Aaron Jheng and committed by
Anderson Torres
327def42 5e76c1a5

+1 -27
-25
pkgs/applications/networking/utahfs/default.nix
··· 1 - { buildGoPackage, lib, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - pname = "utahfs"; 5 - version = "1.0"; 6 - src = fetchFromGitHub { 7 - owner = "cloudflare"; 8 - repo = pname; 9 - rev = "v${version}"; 10 - sha256 = "1hpwch5fsqlxwpk5afawa1k5s0bx5c1cw0hvdllp7257lgly19fb"; 11 - }; 12 - 13 - goPackagePath = "github.com/cloudflare/utahfs"; 14 - 15 - meta = with lib; { 16 - homepage = "https://github.com/cloudflare/utahfs"; 17 - description = 18 - "Encrypted storage system that provides a user-friendly FUSE drive backed by cloud storage"; 19 - license = licenses.bsd3; 20 - maintainers = [ maintainers.snglth ]; 21 - platforms = platforms.unix; 22 - # does not build with go 1.17: https://github.com/cloudflare/utahfs/issues/46 23 - broken = true; 24 - }; 25 - }
+1
pkgs/top-level/aliases.nix
··· 1847 1847 urxvt_vtwheel = rxvt-unicode-plugins.vtwheel; # Added 2020-02-02 1848 1848 usb_modeswitch = throw "'usb_modeswitch' has been renamed to/replaced by 'usb-modeswitch'"; # Converted to throw 2022-02-22 1849 1849 usbguard-nox = throw "'usbguard-nox' has been renamed to/replaced by 'usbguard'"; # Converted to throw 2023-09-10 1850 + utahfs = throw "utahfs has been removed, as it is broken and lack of maintenance from upstream"; # Added 2023-09-29 1850 1851 util-linuxCurses = util-linux; # Added 2022-04-12 1851 1852 utillinux = util-linux; # Added 2020-11-24 1852 1853
-2
pkgs/top-level/all-packages.nix
··· 7830 7830 7831 7831 vt-cli = callPackage ../tools/security/vt-cli { }; 7832 7832 7833 - utahfs = callPackage ../applications/networking/utahfs { }; 7834 - 7835 7833 wakeonlan = callPackage ../tools/networking/wakeonlan { }; 7836 7834 7837 7835 wallutils = callPackage ../tools/graphics/wallutils { };