feat(pkgs): advcp
-> advcpmv
This commit is contained in:
parent
ab95ac9e67
commit
9eb88e04c4
3 changed files with 32 additions and 25 deletions
|
@ -1,24 +0,0 @@
|
|||
{ stdenv, fetchurl, fetchpatch, upstream ? "coreutils" }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "advcp";
|
||||
version = "9.1";
|
||||
|
||||
src = fetchurl {
|
||||
name = "source-${name}-${version}.tar.xz";
|
||||
url = "ftp://ftp.gnu.org/gnu/${upstream}/${upstream}-${version}.tar.xz";
|
||||
hash = "sha256-YaH0ENeLp+fzelpPUObRMgrKMzdUhKMlXt3xejhYBCM=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/jarun/advcpmv/ea268d870b475edd5960dcd55d5378abc9705958/advcpmv-0.9-${version}.patch";
|
||||
hash = "sha256-d+SRT/R4xmfHLAdOr7m4R3WFiW64P5ZH6iqDvErYCyg=";
|
||||
})
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
install -D src/cp $out/bin/advcp
|
||||
install -D src/mv $out/bin/advmv
|
||||
'';
|
||||
}
|
31
pkgs/advcpmv/default.nix
Normal file
31
pkgs/advcpmv/default.nix
Normal 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"
|
||||
'';
|
||||
}
|
|
@ -5,7 +5,7 @@
|
|||
, ...
|
||||
}: {
|
||||
# example = pkgs.callPackage ./example { };
|
||||
advcp = pkgs.callPackage ./advcp { };
|
||||
advcpmv = pkgs.callPackage ./advcpmv { };
|
||||
fennel-language-server = pkgs.callPackage ./fennel-language-server { };
|
||||
parinfer-rust = pkgs.callPackage ./parinfer-rust { };
|
||||
swww = pkgs.callPackage ./swww { };
|
||||
|
|
Loading…
Reference in a new issue