diff --git a/modules/home-manager/shell/default.nix b/modules/home-manager/shell/default.nix index 2353534..d3fdac6 100755 --- a/modules/home-manager/shell/default.nix +++ b/modules/home-manager/shell/default.nix @@ -46,7 +46,6 @@ nvtop zip unzip - speedtestpp pciutils gnumake copyq diff --git a/pkgs/default.nix b/pkgs/default.nix index 6c64cd5..cc78f32 100755 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,5 +1,4 @@ { pkgs, ... }: { - speedtestpp = pkgs.callPackage ./speedtestpp { }; nvchad = pkgs.callPackage ./nvchad { }; astronvim = pkgs.callPackage ./astronvim { }; } diff --git a/pkgs/speedtestpp/default.nix b/pkgs/speedtestpp/default.nix deleted file mode 100755 index 0dcead1..0000000 --- a/pkgs/speedtestpp/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ stdenv, lib, fetchFromGitHub, cmake, curl, openssl, libxml2 }: -stdenv.mkDerivation { - pname = "speedtestpp"; - version = "2021-08-29"; - src = fetchFromGitHub { - owner = "taganaka"; - repo = "speedtest"; - rev = "0f63cfbf7ce8d64ea803bf143b957eae76323405"; - sha256 = "sha256-rGY0kK2OCZl+229/JERf2ghBSdvAedhVuL4SrVzYFmU="; - }; - nativeBuildInputs = [ cmake curl openssl libxml2 ]; - postInstall = '' - ln -s $out/bin/SpeedTest $out/bin/speedtestpp - ''; - - meta = with lib; { - description = "Unofficial speedtest.net cli using raw TCP for better accuracy"; - homepage = "https://github.com/taganaka/SpeedTest"; - license = licenses.mit; - platforms = platforms.linux; - }; -}