2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2019-09-29 17:21:51 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
arch = "amd64";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "jotta-cli";
|
2021-02-04 15:54:45 +00:00
|
|
|
version = "0.9.39536";
|
2020-02-02 21:31:44 +00:00
|
|
|
src = fetchzip {
|
2019-09-29 17:21:51 +01:00
|
|
|
url = "https://repo.jotta.us/archives/linux/${arch}/jotta-cli-${version}_linux_${arch}.tar.gz";
|
2021-02-04 15:54:45 +00:00
|
|
|
sha256 = "sha256-JZtc6Si3ZQoRG3q+ctzPPQm7WbMYRailIuq/Y5Avd2s=";
|
2019-09-29 17:21:51 +01: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-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-29 17:21:51 +01:00
|
|
|
description = "Jottacloud CLI";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jottacloud.com/";
|
|
|
|
downloadPage = "https://repo.jotta.us/archives/linux/";
|
2019-09-29 17:21:51 +01:00
|
|
|
maintainers = with maintainers; [ evenbrenden ];
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|