yep, more dotfiles

chore(pkgs): remove sweep

-30
-1
home-manager/fragments/tools.nix
··· 59 59 wcurl 60 60 ]) ++ lib.optionals (!flags.onlyCached) [ 61 61 lpkgs.otree 62 - lpkgs.sweep 63 62 ]; 64 63 }; 65 64 }
-1
pkgs/default.nix
··· 10 10 names = pkgs.callPackage ./names.nix { }; 11 11 otree = pkgs.callPackage ./otree.nix { }; 12 12 probe-rs-udev-rules = pkgs.callPackage ./probe-rs-udev-rules.nix { }; 13 - sweep = pkgs.callPackage ./sweep.nix { }; 14 13 15 14 # Import packages defined in foreign repositories 16 15 inherit (agenix.packages.${system}) agenix;
-28
pkgs/sweep.nix
··· 1 - { lib 2 - 3 - , fetchFromGitHub 4 - , rustPlatform 5 - }: 6 - 7 - rustPlatform.buildRustPackage rec { 8 - pname = "sweep"; 9 - version = "1.0.3"; 10 - 11 - src = fetchFromGitHub { 12 - owner = "woubuc"; 13 - repo = pname; 14 - rev = "v${version}"; 15 - hash = "sha256-HpapdWs7F3zB/ZpUXGxXODNin3zifzkZpB95mOKDWyk="; 16 - }; 17 - 18 - cargoHash = "sha256-XoGFw/ramHsK0viOS+NAn+DpuM+MSlY4eDPbwkyZuJA="; 19 - 20 - meta = with lib; { 21 - description = "Reduce the disk usage of your projects by removing dependencies & builds"; 22 - homepage = "https://github.com/woubuc/sweep"; 23 - license = licenses.mit; 24 - maintainers = with maintainers; [ "mrnossiom" ]; 25 - mainProgram = "swp"; 26 - }; 27 - } 28 -