remove advcpmv

This commit is contained in:
Tyler Starr 2025-03-12 22:29:57 -07:00
parent b50cd6b324
commit 473a47b852
4 changed files with 0 additions and 37 deletions

View File

@ -33,10 +33,6 @@ alias tl='trash-list'
alias tre='trash-restore' alias tre='trash-restore'
alias trm='trash-rm' alias trm='trash-rm'
# cp and mv with progress
alias cp="cpg -g"
alias mv="mvg -g"
# git # git
alias gs="git status" alias gs="git status"
alias gc="git commit" alias gc="git commit"

View File

@ -11,7 +11,6 @@
vim # Text editor that is highly configurable and widely used, especially in the Unix environment vim # Text editor that is highly configurable and widely used, especially in the Unix environment
rbw # Command-line interface to the Bitwarden password manager 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 trash-cli # Command-line interface to the freedesktop.org Trash
ripgrep # Line-oriented search tool that recursively searches directories for a regex pattern ripgrep # Line-oriented search tool that recursively searches directories for a regex pattern
sesh # Smart session manager for the terminal sesh # Smart session manager for the terminal

View File

@ -1,5 +1,4 @@
final: prev: { final: prev: {
advcpmv = final.callPackage ../pkgs/advcpmv.nix {};
ftw = final.callPackage ../pkgs/ftw.nix {}; ftw = final.callPackage ../pkgs/ftw.nix {};
gnome-set-panel-monitor = final.callPackage ../pkgs/gnome-set-panel-monitor.nix {}; gnome-set-panel-monitor = final.callPackage ../pkgs/gnome-set-panel-monitor.nix {};
stacks-in-gnome = final.callPackage ../pkgs/stacks-in-gnome.nix {}; stacks-in-gnome = final.callPackage ../pkgs/stacks-in-gnome.nix {};

View File

@ -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"
'';
}