mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9717d35312
Reviewed-by: Tor Hedin Brønner <torhedinbronner@gmail.com>
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchzip }:
|
|
|
|
let
|
|
arch = "amd64";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "jotta-cli";
|
|
version = "0.6.18626";
|
|
src =
|
|
fetchzip {
|
|
url = "https://repo.jotta.us/archives/linux/${arch}/jotta-cli-${version}_linux_${arch}.tar.gz";
|
|
sha256 = "0v9bw0f2mcvmzp7v8gs6q4p1q54rflqnbjv5sw7h1kyfwznmflzj";
|
|
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
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Jottacloud CLI";
|
|
homepage = https://www.jottacloud.com/;
|
|
downloadPage = https://repo.jotta.us/archives/linux/;
|
|
maintainers = with maintainers; [ evenbrenden ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|