4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
let
|
|
arch = "amd64";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "jotta-cli";
|
|
version = "0.7.35160";
|
|
src = fetchzip {
|
|
url = "https://repo.jotta.us/archives/linux/${arch}/jotta-cli-${version}_linux_${arch}.tar.gz";
|
|
sha256 = "00fzycy199l9y738cj71s88qz96ppczb5sqsk3x9w4jj4m6ks239";
|
|
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 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" ];
|
|
};
|
|
}
|