···5151 # that we can disable the autospawn feature in programs that5252 # are built with PulseAudio support (like KDE).5353 clientConf = writeText "client.conf" ''5454- autospawn=${if nonSystemWide then "yes" else "no"}5555- ${optionalString nonSystemWide "daemon-binary=${binary}"}5454+ autospawn=no5655 ${cfg.extraClientConf}5756 '';5857
+7
nixos/modules/hardware/steam-hardware.nix
···2121 services.udev.packages = [2222 pkgs.steamPackages.steam2323 ];2424+2525+ # The uinput module needs to be loaded in order to trigger the udev rules2626+ # defined in the steam package for setting permissions on /dev/uinput.2727+ #2828+ # If the udev rules are not triggered, some controllers won't work with2929+ # steam.3030+ boot.kernelModules = [ "uinput" ];2431 };2532}
···220220 exec ${lightdm}/sbin/lightdm221221 '';222222223223- # Replaces getty and plymouth quit since it quits plymouth on it's own.223223+ # Replaces getty224224 systemd.services.display-manager.conflicts = [225225 "getty@tty7.service"226226- "plymouth-quit.service"226226+ # TODO: Add "plymouth-quit.service" so LightDM can control when plymouth227227+ # quits. Currently this breaks switching to configurations with plymouth.227228 ];228229229230 # Pull in dependencies of services we replace.
+16-6
nixos/modules/system/boot/systemd-nspawn.nix
···113113 config =114114 let115115 units = mapAttrs' (n: v: let nspawnFile = "${n}.nspawn"; in nameValuePair nspawnFile (instanceToUnit nspawnFile v)) cfg;116116- in mkIf (cfg != {}) {116116+ in 117117+ mkMerge [118118+ (mkIf (cfg != {}) { 119119+ environment.etc."systemd/nspawn".source = mkIf (cfg != {}) (generateUnits "nspawn" units [] []);120120+ })121121+ {122122+ systemd.targets.multi-user.wants = [ "machines.target" ];117123118118- environment.etc."systemd/nspawn".source = generateUnits "nspawn" units [] [];119119-120120- systemd.targets.multi-user.wants = [ "machines.target" ];121121- };122122-124124+ # Workaround for https://github.com/NixOS/nixpkgs/pull/67232#issuecomment-531315437 and https://github.com/systemd/systemd/issues/13622125125+ # Once systemd fixes this upstream, we can re-enable -U126126+ systemd.services."systemd-nspawn@".serviceConfig.ExecStart = [ 127127+ "" # deliberately empty. signals systemd to override the ExecStart128128+ # Only difference between upstream is that we do not pass the -U flag129129+ "${pkgs.systemd}/bin/systemd-nspawn --quiet --keep-unit --boot --link-journal=try-guest --network-veth --settings=override --machine=%i"130130+ ];131131+ }132132+ ];123133}
···2233buildGoPackage rec {44 pname = "go-ethereum";55- version = "1.9.5";55+ version = "1.9.6";6677 goPackagePath = "github.com/ethereum/go-ethereum";88···1717 owner = "ethereum";1818 repo = pname;1919 rev = "v${version}";2020- sha256 = "1h1c02dgazlcgp9lrm0zsig80nfj0c9553jy9nsvjyzf95ym1542";2020+ sha256 = "08k6p7mbszlg8mq8k3vi5xrfnhfbxlh2ynd0nr0j64qdhmhcdnq6";2121 };22222323 meta = with stdenv.lib; {
+15-12
pkgs/applications/blockchains/pivx.nix
···11-{ fetchFromGitHub, stdenv, pkgconfig, autoreconfHook22-, openssl, db48, boost, zlib, miniupnpc, gmp11+{ fetchFromGitHub, stdenv, pkgconfig, autoreconfHook, wrapQtAppsHook ? null22+, openssl_1_0_2, db48, boost, zlib, miniupnpc, gmp33, qrencode, glib, protobuf, yasm, libevent44, utillinux, qtbase ? null, qttools ? null55, enableUpnp ? false···991010with stdenv.lib;1111stdenv.mkDerivation rec {1212- pname = "pivx";1313- version = "3.2.0";1212+ name = "pivx-${version}";1313+ version = "3.4.0";14141515 src = fetchFromGitHub {1616 owner = "PIVX-Project";1717 repo= "PIVX";1818 rev = "v${version}";1919- sha256 = "1sym6254vhq8qqpxq9qhy10m5167v7x93kqaj1gixc1vwwbxyazy";1919+ sha256 = "1fqccdqhbwyvix0ihhbgg2w048i6bhfmazr36h2cn4j65n1fgmi2";2020 };21212222- nativeBuildInputs = [ pkgconfig autoreconfHook ];2323- buildInputs = [ glib gmp openssl db48 yasm boost zlib libevent miniupnpc protobuf utillinux ]2222+ nativeBuildInputs = [ pkgconfig autoreconfHook ] ++ optionals withGui [ wrapQtAppsHook ];2323+ buildInputs = [ glib gmp openssl_1_0_2 db48 yasm boost zlib libevent miniupnpc protobuf utillinux ]2424 ++ optionals withGui [ qtbase qttools qrencode ];25252626 configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]···2828 ++ optional disableWallet "--disable-wallet"2929 ++ optional disableDaemon "--disable-daemon"3030 ++ optionals withGui [ "--with-gui=yes"3131+ "--with-unsupported-ssl" # TODO remove this ASAP3132 "--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"3233 ];3334···3837 mkdir -p $out/share/applications $out/share/icons3938 cp contrib/debian/pivx-qt.desktop $out/share/applications/4039 cp share/pixmaps/*128.png $out/share/icons/4040+ '';4141+4242+ doInstallCheck = true;4343+ installCheckPhase = ''4444+ $out/bin/test_pivx4145 '';42464347 meta = with stdenv.lib; {···5650 homepage = https://www.dash.org;5751 maintainers = with maintainers; [ wucke13 ];5852 platforms = platforms.unix;5959-5353+ # TODO6054 # upstream doesn't support newer openssl versions6155 # https://github.com/PIVX-Project/PIVX/issues/7486262- # "Your system is most probably using openssl 1.1 which is not the6363- # officialy supported version. Either use 1.0.1 or run again configure6464- # with the given option."6565- broken = true;5656+ # openssl_1_0_2 should be replaced with openssl ASAP6657 };6758}
+16-16
pkgs/applications/editors/ne/default.nix
···11{ stdenv, fetchFromGitHub, ncurses, texinfo, texlive, perl, ghostscript }:2233-43stdenv.mkDerivation rec {54 pname = "ne";66- version = "3.1.2";55+ version = "3.2.1";66+77 src = fetchFromGitHub {88 owner = "vigna";99- repo = "ne";99+ repo = pname;1010 rev = version;1111- sha256 = "154grh9gdzydnqn9xxj7zpia9cc5x6a7y1g73vwizr9bkg92l5cc";1111+ sha256 = "0h6d08cnwrk96ss83i9bragwwanph6x54sm3ak1z81146dsqsiif";1212 };1313- buildInputs = [ ncurses texlive.combined.scheme-medium texinfo perl ghostscript ];1414- dontBuild = true;1515- installPhase = ''1616- substituteInPlace src/makefile --replace "CC=c99" "cc=gcc"1717- substituteInPlace src/makefile --replace "-lcurses" "-lncurses"1313+1414+ postPatch = ''1815 substituteInPlace makefile --replace "./version.pl" "perl version.pl"1919- cd doc && make && cd ..2020- cd src && make && cd ..2121- make PREFIX=$out install1616+ substituteInPlace src/makefile --replace "-lcurses" "-lncurses"2217 '';23182424- meta = {1919+ nativeBuildInputs = [ texlive.combined.scheme-medium texinfo perl ghostscript ];2020+ buildInputs = [ ncurses ];2121+2222+ makeFlags = [ "PREFIX=${placeholder "out"}" ];2323+2424+ meta = with stdenv.lib; {2525 description = "The nice editor";2626- homepage = https://github.com/vigna/ne;2626+ homepage = "http://ne.di.unimi.it/";2727 longDescription = ''2828 ne is a free (GPL'd) text editor based on the POSIX standard that runs2929 (we hope) on almost any UN*X machine. ne is easy to use for the beginner,3030 but powerful and fully configurable for the wizard, and most sparing in its3131 resource usage. See the manual for some highlights of ne's features.3232 '';3333- license = stdenv.lib.licenses.gpl3;3434- platforms = stdenv.lib.platforms.unix;3333+ license = licenses.gpl3;3434+ platforms = platforms.unix;3535 };3636}
+3-3
pkgs/applications/editors/vscode/vscodium.nix
···1111 archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";12121313 sha256 = {1414- x86_64-linux = "15m7mfb8gmx3pwydc37blj0rxwgmkrnqfj6y79rpqlr2dg92gwlb";1515- x86_64-darwin = "080k4fnfa5ylmmya6zprgci3gld9mrbqsfnk53hgcny91ykl5xj5";1414+ x86_64-linux = "1vhrfz36ay67laa5159jcnxyl4prgm8v1mp6anv1s7bppazigg2n";1515+ x86_64-darwin = "0cxsl0qpk223khndfwwgxl8az4rz4ap657yrkvws9bh8k4vv473h";1616 }.${system};17171818 sourceRoot = {···2323 callPackage ./generic.nix rec {2424 inherit sourceRoot;25252626- version = "1.38.1";2626+ version = "1.39.1";2727 pname = "vscodium";28282929 executableName = "codium";
+2-2
pkgs/applications/misc/cherrytree/default.nix
···44stdenv.mkDerivation rec {5566 pname = "cherrytree";77- version = "0.38.8";77+ version = "0.38.9";8899 src = fetchurl {1010 url = "https://www.giuspen.com/software/${pname}-${version}.tar.xz";1111- sha256 = "1ns87xl2sgrf3nha4xkhp0xcxlycqszlp6xdrn95lg6vzm0fa8dg";1111+ sha256 = "0xal09ijgxbzvp003s40xbrfnpq3ald1fw8nnpqq3yg7h6g6c5pw";1212 };13131414 buildInputs = with pythonPackages;
···1717 '';18181919 meta = with lib; {2020- homepage = https://pwmt.org/projects/zathura/;2020+ homepage = https://git.pwmt.org/pwmt/zathura/;2121 description = "A highly customizable and functional PDF viewer";2222 longDescription = ''2323 Zathura is a highly customizable and functional PDF viewer based on the
···5566buildGoPackage rec {77 pname = "runc";88- version = "1.0.0-rc8";88+ version = "1.0.0-rc9";991010 src = fetchFromGitHub {1111 owner = "opencontainers";1212 repo = "runc";1313 rev = "v${version}";1414- sha256 = "05s4p12mgmdcy7gjralh41wlgds6m69zdgwbpdn1xjj2487dmhxf";1414+ sha256 = "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7";1515 };16161717 goPackagePath = "github.com/opencontainers/runc";···5353 homepage = https://runc.io/;5454 description = "A CLI tool for spawning and running containers according to the OCI specification";5555 license = licenses.asl20;5656- maintainers = with maintainers; [ offline vdemeester ];5656+ maintainers = with maintainers; [ offline vdemeester saschagrunert ];5757 platforms = platforms.linux;5858 };5959}
+1-1
pkgs/data/fonts/gohufont/default.nix
···2424 # convert bdf to psf fonts2525 build=$(pwd)2626 mkdir psf2727- cd ${bdf2psf}/usr/share/bdf2psf2727+ cd ${bdf2psf}/share/bdf2psf2828 for i in $bdf/*.bdf; do2929 bdf2psf \3030 --fb "$i" standard.equivalents \
···2121 # FIXME: might be nice to put different APIs in different outputs2222 # (e.g. libaws-cpp-sdk-s3.so in output "s3").2323 outputs = [ "out" "dev" ];2424- separateDebugInfo = stdenv.isLinux;25242625 nativeBuildInputs = [ cmake curl ];2726
···2233buildPythonPackage rec {44 pname = "credstash";55- version = "1.15.0";55+ version = "1.16.1";6677 src = fetchPypi {88 inherit pname version;99- sha256 = "814560f99ae2409e2c6d906d878f9dadada5d1d0a950aafb6b2c0d535291bdfb";99+ sha256 = "019wviz3hx0pkh3mgqr3prg55njyhzvhjqcpndgrfmkykjkcj435";1010 };11111212 # The install phase puts an executable and a copy of the library it imports in
···2233buildGoModule rec {44 pname = "conftest";55- version = "0.12.0";55+ version = "0.14.0";66+77+ # Something subtle in the go sum db is causing every download to88+ # get a new sum (and thus breaking the hash). This disables the99+ # fetching of the sum from the go sum database.1010+ modBuildPhase = ''1111+ runHook preBuild1212+ GONOSUMDB=* go mod download1313+ runHook postBuild1414+ '';615716 src = fetchFromGitHub {817 owner = "instrumenta";918 repo = "conftest";1019 rev = "v${version}";1111- sha256 = "0blrbbnvnnxyw0idhglqdz16i7g6g86a6kw2iw707bg0yfdl1ncq";2020+ sha256 = "0fjz6ad8rnznlp1kiyb3c6anhjs6v6acgziw4hmyz0xva4jnspsh";1221 };13221414- patches = [1515- # Version 0.12.0 does not build with go 1.13. See https://github.com/instrumenta/conftest/pull/85.1616- # TODO: Remove once https://github.com/instrumenta/conftest/pull/85 is merged and lands in a release.1717- ./go-1.13-deps.patch1818- ];2323+ modSha256 = "1xwqlqx5794hsi14h5gqg69gjcqcma24ha0fxn0vffqgqs2cz1d1";19242025 buildFlagsArray = ''2126 -ldflags=2227 -X main.version=${version}2328 '';24292525- modSha256 = "11999ywy73ng45gl1qypky8342jvishcp11bdxbigvqhwl2zbpav";3030+ subPackages = [ "cmd" ];26312732 meta = with lib; {2833 description = "Write tests against structured configuration data";
···2233rustPlatform.buildRustPackage rec {44 pname = "cargo-bloat";55- version = "0.8.3";55+ version = "0.9.0";6677 src = fetchFromGitHub {88 owner = "RazrFalcon";99 repo = pname;1010 rev = "v${version}";1111- sha256 = "088px2kdcfjdb8zfmk7g409h7ij9dngywz336hj2ny82lrdjzazc";1111+ sha256 = "03pzp5d9kzbx62jpjzgww0x3qv9f08blvl8f4yg5hrlyaaa06xsd";1212 };13131414- cargoSha256 = "11q8j8y7m59gc8047qhz6pp2825qjcpg9xwgj09l8a5aijf25avb";1414+ cargoSha256 = "1jc1lx0yk8galkyc4a67d39ywsfrgc2sjjsz08p47gpz7228d64w";15151616 meta = with lib; {1717 description = "A tool and Cargo subcommand that helps you find out what takes most of the space in your executable";
+46
pkgs/development/tools/spring-boot/default.nix
···11+{ stdenv, fetchzip, jdk, makeWrapper, installShellFiles }:22+33+stdenv.mkDerivation rec {44+ pname = "spring-boot";55+ version = "2.1.9";66+77+ src = fetchzip {88+ url = "https://repo.spring.io/release/org/springframework/boot/${pname}-cli/${version}.RELEASE/${pname}-cli-${version}.RELEASE-bin.zip";99+ sha256 = "03iphh5l9w9sizksidkv217qnqx3nh1zpw6kdjnn40j3mlabfb7j";1010+ };1111+1212+ nativeBuildInputs = [ makeWrapper installShellFiles ];1313+1414+ installPhase = ''1515+ runHook preInstall1616+ rm bin/spring.bat1717+ installShellCompletion --bash shell-completion/bash/spring1818+ installShellCompletion --zsh shell-completion/zsh/_spring1919+ rm -r shell-completion2020+ cp -r . $out2121+ wrapProgram $out/bin/spring \2222+ --prefix JAVA_HOME : ${jdk}2323+ runHook postInstall2424+ '';2525+2626+ meta = with stdenv.lib; {2727+ description = ''2828+ CLI which makes it easy to create spring-based applications2929+ '';3030+ longDescription = ''3131+ Spring Boot makes it easy to create stand-alone, production-grade 3232+ Spring-based Applications that you can run. We take an opinionated view 3333+ of the Spring platform and third-party libraries, so that you can get 3434+ started with minimum fuss. Most Spring Boot applications need very 3535+ little Spring configuration.3636+3737+ You can use Spring Boot to create Java applications that can be started 3838+ by using java -jar or more traditional war deployments. We also provide 3939+ a command line tool that runs “spring scripts”.4040+ '';4141+ homepage = https://spring.io/projects/spring-boot;4242+ license = licenses.asl20;4343+ platforms = platforms.all;4444+ maintainers = with maintainers; [ moaxcp ];4545+ };4646+}
+18-10
pkgs/games/crispy-doom/default.nix
···11-{ stdenv, autoreconfHook, pkgconfig, SDL2, SDL2_mixer, SDL2_net, fetchurl }:11+{ stdenv, autoreconfHook, pkgconfig, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub }:2233stdenv.mkDerivation rec {44- name = "crispy-doom-5.6";55- src = fetchurl {66- url = "https://github.com/fabiangreffrath/crispy-doom/archive/${name}.tar.gz";77- sha256 = "1icz3ivd7v3mvwlslwwd7s3bpjzr54x4lslihyjg1ckq23sl830j";44+ pname = "crispy-doom";55+ version = "5.6.3";66+77+ src = fetchFromGitHub {88+ owner = "fabiangreffrath";99+ repo = pname;1010+ rev = "${pname}-${version}";1111+ sha256 = "0f319979wqfgm4pvsa6y5clg30p55l441kmrr8db0p5smyv3x2s4";812 };99- nativeBuildInputs = [ autoreconfHook pkgconfig ];1010- buildInputs = [ SDL2 SDL2_mixer SDL2_net ];1111- patchPhase = ''1313+1414+ postPatch = ''1215 sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am1316 '';14171818+ nativeBuildInputs = [ autoreconfHook pkgconfig ];1919+ buildInputs = [ SDL2 SDL2_mixer SDL2_net ];1520 enableParallelBuilding = true;16211722 meta = {1818- homepage = http://fabiangreffrath.github.io/crispy-doom;2323+ homepage = "http://fabiangreffrath.github.io/crispy-doom";1924 description = "A limit-removing enhanced-resolution Doom source port based on Chocolate Doom";2020- longDescription = "Crispy Doom is a limit-removing enhanced-resolution Doom source port based on Chocolate Doom. Its name means that 640x400 looks \"crisp\" and is also a slight reference to its origin.";2525+ longDescription = ''2626+ Crispy Doom is a limit-removing enhanced-resolution Doom source port based on Chocolate Doom.2727+ Its name means that 640x400 looks \"crisp\" and is also a slight reference to its origin.2828+ '';2129 license = stdenv.lib.licenses.gpl2Plus;2230 platforms = stdenv.lib.platforms.unix;2331 maintainers = with stdenv.lib.maintainers; [ neonfuz ];
···2233stdenv.mkDerivation rec {44 pname = "dmtcp";55- version = "2.5.2";55+ version = "2.6.0";6677 src = fetchFromGitHub {88- owner = "dmtcp";99- repo = "dmtcp";88+ owner = pname;99+ repo = pname;1010 rev = version;1111- sha256 = "1sq38in4wk855yhfnzbs9xpnps97fhja93w08xjmx7szzm33g5a8";1111+ sha256 = "01skyhr573w1dygvkwz66lvir2jsq443fjwkysglwxvmrdfz9kwd";1212 };13131414 dontDisableStatic = true;···3333 --replace "os.getenv('USER')" "\"nixbld1\""3434 '';35353636- meta = {3636+ meta = with stdenv.lib; {3737 description = "Distributed MultiThreaded Checkpointing";3838 longDescription = ''3939 DMTCP (Distributed MultiThreaded Checkpointing) is a tool to···4141 programs spread across many machines and connected by sockets. It does4242 not modify the user's program or the operating system.4343 '';4444- homepage = http://dmtcp.sourceforge.net/;4545- license = stdenv.lib.licenses.lgpl3Plus; # most files seem this or LGPL-2.1+4444+ homepage = "http://dmtcp.sourceforge.net/";4545+ license = licenses.lgpl3Plus; # most files seem this or LGPL-2.1+4646+ platforms = intersectLists platforms.linux platforms.x86; # broken on ARM and Darwin4647 };4748}
+2-2
pkgs/os-specific/linux/kernel/linux-4.14.nix
···33with stdenv.lib;4455buildLinux (args // rec {66- version = "4.14.148";66+ version = "4.14.149";7788 # modDirVersion needs to be x.y.z, will automatically add .0 if needed99 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;···13131414 src = fetchurl {1515 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";1616- sha256 = "1b8ggknvaidsvqnzpgbcmz3ybys9a8jm8iq6aqcnqfp10d0bglhj";1616+ sha256 = "15pjngy3j5vnisv462ll7wsg78qv7q2cz86da0bcwh446v9ap7g6";1717 };1818} // (args.argsOverride or {}))
+2-2
pkgs/os-specific/linux/kernel/linux-4.19.nix
···33with stdenv.lib;4455buildLinux (args // rec {66- version = "4.19.78";66+ version = "4.19.79";7788 # modDirVersion needs to be x.y.z, will automatically add .0 if needed99 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;···13131414 src = fetchurl {1515 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";1616- sha256 = "0jah57k3q7b674dr544cniwhya667d8h7x9k5886d1g2qrvylqyz";1616+ sha256 = "0d2bcg0krahia2ylgqaxdppyr9idq2pi6y1si6h8n9sg6rj3a57i";1717 };1818} // (args.argsOverride or {}))
+2-2
pkgs/os-specific/linux/kernel/linux-5.2.nix
···33with stdenv.lib;4455buildLinux (args // rec {66- version = "5.2.20";66+ version = "5.2.21";7788 # modDirVersion needs to be x.y.z, will automatically add .0 if needed99 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;···13131414 src = fetchurl {1515 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";1616- sha256 = "0sddasxka08c1qjhbd9w4z7rzprfly2i67q4iwppbldngi4y48di";1616+ sha256 = "0f1mick15d0m7yhhhdwai03wmczvkm9cg38w2ivgmgysfpzy73ls";1717 };1818} // (args.argsOverride or {}))
+2-2
pkgs/os-specific/linux/kernel/linux-5.3.nix
···33with stdenv.lib;4455buildLinux (args // rec {66- version = "5.3.5";66+ version = "5.3.6";7788 # modDirVersion needs to be x.y.z, will automatically add .0 if needed99 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;···13131414 src = fetchurl {1515 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";1616- sha256 = "1w2k3q6q9cf3r27z084c9nsxh49bq4cvky39pp6dp3r9zif8rvc0";1616+ sha256 = "07zcfpj6ras7mmazny5xjwf8v6l5hwdgnla21sqpppl48ylj2h78";1717 };1818} // (args.argsOverride or {}))
+1-1
pkgs/os-specific/linux/zfs/default.nix
···140140 Copy-On-Write filesystem with data integrity detection and repair,141141 snapshotting, cloning, block devices, deduplication, and more.142142 '';143143- homepage = http://zfsonlinux.org/;143143+ homepage = https://zfsonlinux.org/;144144 license = licenses.cddl;145145 platforms = platforms.linux;146146 maintainers = with maintainers; [ jcumming wizeman fpletz globin ];
···13131414 modSha256 = "0i86xs3lq2mj22yv7jmhmb34k7lz348bakqz020xpyccllkkszy4";15151616+ patches = [1717+ ./go.mod.patch1818+ ./go.sum.patch1919+ ];2020+1621 meta = with lib;{1722 description = "A user-space file system for interacting with Google Cloud Storage";1823 homepage = "https://cloud.google.com/storage/docs/gcs-fuse";
···1111 sha256 = "0mm6hl5qklfv0yffj6cgypsgcrk4fq6p60djycfgj20yhz9cmf9x";1212 };13131414+ patches = [1515+ # Version 0.7.2 does not build with go 1.13.1616+ # TODO: Remove once(and if) https://github.com/bcicen/ctop/pull/178 is merged and lands in a release.1717+ ./go-1.13-deps.patch1818+ ];1919+1420 modSha256 = "0ad1gvamckg94r7f68cnjdbq9nyz6c3hh339hy4hghxd3rd1qskn";15211622 meta = with lib; {