nixpkgs/pkgs/tools/system/wsmancli/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, autoconf, automake, libtool, pkgconfig, openwsman, openssl }:
2015-08-19 08:10:37 +00:00
stdenv.mkDerivation rec {
version = "2.6.0";
name = "wsmancli-${version}";
src = fetchurl {
url = "https://github.com/Openwsman/wsmancli/archive/v${version}.tar.gz";
sha256 = "03ay6sa4ii8h6rr3l2qiqqml8xl6gplrlg4v2avdh9y6sihfyvvn";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf automake libtool openwsman openssl ];
2015-08-19 08:10:37 +00:00
preConfigure = ''
./bootstrap
configureFlagsArray=(
LIBS="-L${openssl.out}/lib -lssl -lcrypto"
)
'';
2015-08-19 08:10:37 +00:00
meta = {
description = "Openwsman command-line client";
longDescription =
'' Openwsman provides a command-line tool, wsman, to perform basic
operations on the command-line. These operations include Get, Put,
Invoke, Identify, Delete, Create, and Enumerate. The command-line tool
also has several switches to allow for optional features of the
WS-Management specification and Testing.
'';
homepage = https://github.com/Openwsman/wsmancli;
downloadPage = "https://github.com/Openwsman/wsmancli/releases";
maintainers = [ stdenv.lib.maintainers.deepfire ];
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
inherit version;
};
}