summary refs log tree commit diff
path: root/pkgs/tools/virtualization/linode-cli/default.nix
blob: d739bdb514a224a5c804a3e6cc60959175403ff5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ stdenv, fetchFromGitHub, perlPackages, makeWrapper}:

perlPackages.buildPerlPackage rec {
  pname = "linode-cli";
  version = "1.4.7";

  src = fetchFromGitHub {
    owner = "linode";
    repo = "cli";
    rev = "v${version}";
    sha256 = "1wiz067wgxi4z4rz4n9p7dlvx5z4hkl2nxpfvhikl6dri4m2nkkp";
  };

  buildInputs = [ makeWrapper ];
  propagatedBuildInputs = with perlPackages; [
    JSON
    LWP
    MozillaCA
    TryTiny
    WebServiceLinode
  ];

  # Wrap perl scripts so they can find libraries
  postInstall = ''
    for n in "$out/bin"/*; do
      wrapProgram "$n" --prefix PERL5LIB : "$PERL5LIB"
    done
  '';

  # Has no tests
  doCheck = false;

  # Has no "doc" or "devdoc" outputs
  outputs = [ "out" ];

  meta = with stdenv.lib; {
    description = "Command-line interface to the Linode platform";
    homepage = "https://github.com/linode/cli";
    license = with licenses; [ artistic2 gpl2 ];
    maintainers = with maintainers; [ nixy ];
  };
}