summary refs log tree commit diff
path: root/pkgs/tools/system/wsmancli
diff options
context:
space:
mode:
authorKosyrev Serge <_deepfire@feelingofgreen.ru>2015-08-19 11:10:37 +0300
committerKosyrev Serge <_deepfire@feelingofgreen.ru>2015-08-24 22:34:16 +0300
commit1770fe4443f4ce4e5e01d1725c55c1015becd5b6 (patch)
tree949ff53849eb1bb847f0b7added349e41ca87c1e /pkgs/tools/system/wsmancli
parentd8b3c4c49c509e15944b5a44ecf183a4991692d5 (diff)
downloadnixpkgs-1770fe4443f4ce4e5e01d1725c55c1015becd5b6.tar
nixpkgs-1770fe4443f4ce4e5e01d1725c55c1015becd5b6.tar.gz
nixpkgs-1770fe4443f4ce4e5e01d1725c55c1015becd5b6.tar.bz2
nixpkgs-1770fe4443f4ce4e5e01d1725c55c1015becd5b6.tar.lz
nixpkgs-1770fe4443f4ce4e5e01d1725c55c1015becd5b6.tar.xz
nixpkgs-1770fe4443f4ce4e5e01d1725c55c1015becd5b6.tar.zst
nixpkgs-1770fe4443f4ce4e5e01d1725c55c1015becd5b6.zip
wsmancli init at 2.6.0
Diffstat (limited to 'pkgs/tools/system/wsmancli')
-rw-r--r--pkgs/tools/system/wsmancli/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/tools/system/wsmancli/default.nix b/pkgs/tools/system/wsmancli/default.nix
new file mode 100644
index 00000000000..5449d53229c
--- /dev/null
+++ b/pkgs/tools/system/wsmancli/default.nix
@@ -0,0 +1,38 @@
+{ fetchurl, stdenv, autoconf, automake, libtool, pkgconfig, openwsman }:
+
+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";
+  };
+
+  buildInputs = [ autoconf automake libtool pkgconfig openwsman ];
+
+  preConfigure = "./bootstrap";
+
+  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;
+  };
+}