fet-sh: init at 1.5

This commit is contained in:
elkowar 2020-08-18 22:46:57 +02:00
parent dd03272130
commit 6ed22877c0
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenvNoCC, lib, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "fet-sh";
version = "1.5";
src = fetchFromGitHub {
owner = "6gk";
repo = "fet.sh";
rev = "v${version}";
sha256 = "15336cayv3rb79y7f0v0qvn6nhr5aqr8479ayp0r0sihn5mkfg35";
};
dontBuild = true;
installPhase = ''
install -m755 -D ./fet.sh $out/bin/fet.sh
'';
meta = with lib; {
description = "A fetch written in posix shell without any external commands (linux only)";
homepage = "https://github.com/6gk/fet.sh";
license = licenses.isc;
platforms = platforms.linux;
maintainers = with maintainers; [ elkowar ];
};
}

View file

@ -269,6 +269,8 @@ in
etBook = callPackage ../data/fonts/et-book { };
fet-sh = callPackage ../tools/misc/fet-sh { };
fetchbower = callPackage ../build-support/fetchbower {
inherit (nodePackages) bower2nix;
};