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.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ lib, stdenvNoCC, nodejs-slim, fetchzip, testers }:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "twilio-cli";
|
|
version = "5.22.3";
|
|
|
|
src = fetchzip {
|
|
url = "https://twilio-cli-prod.s3.amazonaws.com/twilio-v${finalAttrs.version}/twilio-v${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-77OmOXKwm+zBlGVSIab8AxARllYm5gRXNddQ1UY4wD0=";
|
|
};
|
|
|
|
buildInputs = [ nodejs-slim ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/libexec/twilio-cli
|
|
cp -R . $out/libexec/twilio-cli
|
|
ln -s $out/libexec/twilio-cli/bin/run $out/bin/twilio
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Unleash the power of Twilio from your command prompt";
|
|
homepage = "https://github.com/twilio/twilio-cli";
|
|
changelog = "https://github.com/twilio/twilio-cli/blob/${finalAttrs.version}/CHANGES.md";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = nodejs-slim.meta.platforms;
|
|
mainProgram = "twilio";
|
|
};
|
|
})
|