fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ fetchurl, stdenv, autoconf, automake, libtool, pkgconfig, openwsman }:
2
3stdenv.mkDerivation rec {
4 version = "2.6.0";
5 name = "wsmancli-${version}";
6
7 src = fetchurl {
8 url = "https://github.com/Openwsman/wsmancli/archive/v${version}.tar.gz";
9 sha256 = "03ay6sa4ii8h6rr3l2qiqqml8xl6gplrlg4v2avdh9y6sihfyvvn";
10 };
11
12 buildInputs = [ autoconf automake libtool pkgconfig openwsman ];
13
14 preConfigure = "./bootstrap";
15
16 meta = {
17 description = "Openwsman command-line client";
18
19 longDescription =
20 '' Openwsman provides a command-line tool, wsman, to perform basic
21 operations on the command-line. These operations include Get, Put,
22 Invoke, Identify, Delete, Create, and Enumerate. The command-line tool
23 also has several switches to allow for optional features of the
24 WS-Management specification and Testing.
25 '';
26
27 homepage = https://github.com/Openwsman/wsmancli;
28 downloadPage = "https://github.com/Openwsman/wsmancli/releases";
29
30 maintainers = [ stdenv.lib.maintainers.deepfire ];
31
32 license = stdenv.lib.licenses.bsd3;
33
34 platforms = stdenv.lib.platforms.gnu; # arbitrary choice
35
36 inherit version;
37 };
38}