feat(pkgs): advcp -> advcpmv

This commit is contained in:
reo101 2023-07-13 14:25:35 +03:00
parent ab95ac9e67
commit 9eb88e04c4
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
3 changed files with 32 additions and 25 deletions

31
pkgs/advcpmv/default.nix Normal file
View file

@ -0,0 +1,31 @@
{ 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-l7kf2vz/heW3lgT89yDs5Wdfzw3Xbb3QhPGct7SCruQ=";
})
];
installPhase = ''
install -D "src/cp" "$out/bin/advcp"
install -D "src/mv" "$out/bin/advmv"
'';
}