2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2019-09-29 09:21:51 -07:00
|
|
|
|
|
|
|
let
|
|
|
|
arch = "amd64";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "jotta-cli";
|
2021-02-04 07:54:45 -08:00
|
|
|
version = "0.9.39536";
|
2020-02-02 13:31:44 -08:00
|
|
|
src = fetchzip {
|
2019-09-29 09:21:51 -07:00
|
|
|
url = "https://repo.jotta.us/archives/linux/${arch}/jotta-cli-${version}_linux_${arch}.tar.gz";
|
2021-02-04 07:54:45 -08:00
|
|
|
sha256 = "sha256-JZtc6Si3ZQoRG3q+ctzPPQm7WbMYRailIuq/Y5Avd2s=";
|
2019-09-29 09:21:51 -07:00
|
|
|
stripRoot = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D usr/bin/jotta-cli usr/bin/jottad -t $out/bin/
|
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) $out/bin/jotta-cli
|
|
|
|
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) $out/bin/jottad
|
|
|
|
$out/bin/jotta-cli completion > $out/share/bash-completion/completions/jotta-cli.bash
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-09-29 09:21:51 -07:00
|
|
|
description = "Jottacloud CLI";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.jottacloud.com/";
|
|
|
|
downloadPage = "https://repo.jotta.us/archives/linux/";
|
2019-09-29 09:21:51 -07:00
|
|
|
maintainers = with maintainers; [ evenbrenden ];
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|