diff --git a/home/dot_aliases b/home/dot_aliases index 211d94cf..3589a02c 100644 --- a/home/dot_aliases +++ b/home/dot_aliases @@ -33,10 +33,6 @@ alias tl='trash-list' alias tre='trash-restore' alias trm='trash-rm' -# cp and mv with progress -alias cp="cpg -g" -alias mv="mvg -g" - # git alias gs="git status" alias gc="git commit" diff --git a/provision/modules/base/terminal.nix b/provision/modules/base/terminal.nix index 95373d1b..3de65905 100644 --- a/provision/modules/base/terminal.nix +++ b/provision/modules/base/terminal.nix @@ -11,7 +11,6 @@ vim # Text editor that is highly configurable and widely used, especially in the Unix environment rbw # Command-line interface to the Bitwarden password manager - advcpmv # Advanced version of the Unix utilities cp and mv trash-cli # Command-line interface to the freedesktop.org Trash ripgrep # Line-oriented search tool that recursively searches directories for a regex pattern sesh # Smart session manager for the terminal diff --git a/provision/overlays/default.nix b/provision/overlays/default.nix index 50ba3d19..d1adb681 100644 --- a/provision/overlays/default.nix +++ b/provision/overlays/default.nix @@ -1,5 +1,4 @@ final: prev: { - advcpmv = final.callPackage ../pkgs/advcpmv.nix {}; ftw = final.callPackage ../pkgs/ftw.nix {}; gnome-set-panel-monitor = final.callPackage ../pkgs/gnome-set-panel-monitor.nix {}; stacks-in-gnome = final.callPackage ../pkgs/stacks-in-gnome.nix {}; diff --git a/provision/pkgs/advcpmv.nix b/provision/pkgs/advcpmv.nix deleted file mode 100644 index da0de469..00000000 --- a/provision/pkgs/advcpmv.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ stdenv, fetchurl, fetchpatch }: - -let - advcpmv_owner = "jarun"; - advcpmv_version = "0.9"; - coreutils_version = "9.1"; - coreutils_upstream = "coreutils"; - patch_rev = "69d2f9d3c72ec149fc7e06f5154af27db857ebb5"; -in -stdenv.mkDerivation rec { - name = "advcpmv"; - version = advcpmv_version; - - src = fetchurl { - name = "source-${name}-${coreutils_version}.tar.xz"; - url = "ftp://ftp.gnu.org/gnu/${coreutils_upstream}/${coreutils_upstream}-${coreutils_version}.tar.xz"; - sha256 = "sha256-YaH0ENeLp+fzelpPUObRMgrKMzdUhKMlXt3xejhYBCM="; - }; - - patches = [ - (fetchpatch { - url = "https://raw.githubusercontent.com/${advcpmv_owner}/${name}/${patch_rev}/${name}-${advcpmv_version}-${coreutils_version}.patch"; - sha256 = "sha256-d+SRT/R4xmfHLAdOr7m4R3WFiW64P5ZH6iqDvErYCyg="; - }) - ]; - - installPhase = '' - install -D "src/cp" "$out/bin/cpg" - install -D "src/mv" "$out/bin/mvg" - ''; -}