mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
tusc-sh: init at 1.0.2
This commit is contained in:
parent
9183ed1b95
commit
9ce032513e
50
pkgs/by-name/tu/tusc-sh/package.nix
Normal file
50
pkgs/by-name/tu/tusc-sh/package.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ lib
|
||||
, stdenvNoCC
|
||||
, fetchFromGitHub
|
||||
, writeShellApplication
|
||||
, curl
|
||||
, coreutils
|
||||
, jq
|
||||
}:
|
||||
|
||||
let
|
||||
tusc = stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "tusc-sh";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "adhocore";
|
||||
repo = "tusc.sh";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-RFgQMYit12pmWnEAE1cyl34SFW87xEbS7gq5Nyel/ss=";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue