51 lines
1 KiB
Nix
51 lines
1 KiB
Nix
|
{ lib
|
||
|
, stdenvNoCC
|
||
|
, fetchFromGitHub
|
||
|
, writeShellApplication
|
||
|
, curl
|
||
|
, coreutils
|
||
|
, jq
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
tusc = stdenvNoCC.mkDerivation (finalAttrs: {
|
||
|
pname = "tusc-sh";
|
||
|
version = "1.1.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "adhocore";
|
||
|
repo = "tusc.sh";
|
||
|
rev = finalAttrs.version;
|
||
|
hash = "sha256-9bTv6ih9N3nPtY5fioZvUCSvCHHB0+yVpxA++z8uGWY=";
|
||
|
};
|
||
|
|
||
|
dontConfigure = true;
|
||
|
dontBuild = true;
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
install -Dm755 tusc.sh -t $out/bin
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
});
|
||
|
in
|
||
|
writeShellApplication {
|
||
|
name = "tusc";
|
||
|
runtimeInputs = [ tusc curl coreutils jq ];
|
||
|
text = ''
|
||
|
tusc.sh "$@"
|
||
|
'';
|
||
|
meta = with lib; {
|
||
|
description = "Tus 1.0.0 client protocol implementation for bash";
|
||
|
homepage = "https://github.com/adhocore/tusc.sh";
|
||
|
changelog = "https://github.com/adhocore/tusc.sh/blob/${tusc.version}/CHANGELOG.md";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ happysalada ];
|
||
|
mainProgram = "tusc";
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|