fet-sh: init at 1.5
This commit is contained in:
parent
dd03272130
commit
6ed22877c0
28
pkgs/tools/misc/fet-sh/default.nix
Normal file
28
pkgs/tools/misc/fet-sh/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -269,6 +269,8 @@ in
|
|||||||
|
|
||||||
etBook = callPackage ../data/fonts/et-book { };
|
etBook = callPackage ../data/fonts/et-book { };
|
||||||
|
|
||||||
|
fet-sh = callPackage ../tools/misc/fet-sh { };
|
||||||
|
|
||||||
fetchbower = callPackage ../build-support/fetchbower {
|
fetchbower = callPackage ../build-support/fetchbower {
|
||||||
inherit (nodePackages) bower2nix;
|
inherit (nodePackages) bower2nix;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user