mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, stdenv, fetchzip, nixosTests }:
|
|
|
|
let
|
|
arch = "amd64";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "jotta-cli";
|
|
version = "0.15.107955";
|
|
src = fetchzip {
|
|
url = "https://repo.jotta.us/archives/linux/${arch}/jotta-cli-${version}_linux_${arch}.tar.gz";
|
|
sha256 = "sha256-qCG3yi0ACmqOnn+gaCN8GedciUobpOww50Kz5AdknqU=";
|
|
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 bash > $out/share/bash-completion/completions/jotta-cli.bash
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) jotta-cli; };
|
|
|
|
meta = with lib; {
|
|
description = "Jottacloud CLI";
|
|
homepage = "https://www.jottacloud.com/";
|
|
downloadPage = "https://repo.jotta.us/archives/linux/";
|
|
maintainers = with maintainers; [ evenbrenden ];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|