summary refs log tree commit diff
path: root/pkgs/by-name/tu/tusc-sh/package.nix
blob: f5b1ce36e152e6968cfe11222b7963a3749a01fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ lib
, stdenvNoCC
, fetchFromGitHub
, writeShellApplication
, curl
, coreutils
, jq
}:

let
  tusc = stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "tusc-sh";
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "adhocore";
    repo = "tusc.sh";
    rev = finalAttrs.version;
    hash = "sha256-EKlcE+rsVh5lUd8dQzAwXDjiUvrrud5yWfF6JWSZQFE=";
  };

  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;
  };
}