afetch: init at 2.2.0 (#130197)
This commit is contained in:
parent
56b1922df6
commit
e3e5a9178f
28
pkgs/tools/misc/afetch/default.nix
Normal file
28
pkgs/tools/misc/afetch/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "afetch";
|
||||||
|
version = "2.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "13-CF";
|
||||||
|
repo = "afetch";
|
||||||
|
rev = "V${version}";
|
||||||
|
sha256 = "sha256-bHP3DJpgh89AaCX4c1tQGaZ/PiWjArED1rMdszFUq+U=";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"PREFIX=${placeholder "out"}"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A fetch program written in C";
|
||||||
|
homepage = "https://github.com/13-CF/afetch";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ dan4ik605743 jk ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -808,6 +808,8 @@ in
|
|||||||
|
|
||||||
afew = callPackage ../applications/networking/mailreaders/afew { };
|
afew = callPackage ../applications/networking/mailreaders/afew { };
|
||||||
|
|
||||||
|
afetch = callPackage ../tools/misc/afetch { };
|
||||||
|
|
||||||
afio = callPackage ../tools/archivers/afio { };
|
afio = callPackage ../tools/archivers/afio { };
|
||||||
|
|
||||||
afl = callPackage ../tools/security/afl {
|
afl = callPackage ../tools/security/afl {
|
||||||
|
Loading…
Reference in New Issue
Block a user