openwsman: 2.6.0 -> 2.6.5

This commit is contained in:
Peter Hoeg 2017-12-24 09:46:53 +08:00
parent 24b4a7f09e
commit ede3aea02a

View File

@ -1,16 +1,20 @@
{ fetchurl, stdenv, autoconf, automake, libtool, pkgconfig, libxml2, curl, cmake, pam, sblim-sfcc }: { stdenv, fetchFromGitHub, cmake, pkgconfig
, curl, libxml2, pam, sblim-sfcc }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "2.6.0";
name = "openwsman-${version}"; name = "openwsman-${version}";
version = "2.6.5";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/Openwsman/openwsman/archive/v${version}.tar.gz"; owner = "Openwsman";
sha256 = "0gw2dsjxzpchg3s85kplwgp9xhd9l7q4fh37iy7r203pvir4k6s4"; repo = "openwsman";
rev = "v${version}";
sha256 = "1r0zslgpcr4m20car4s3hsccy10xcb39qhpw3dhpjv42xsvvs5xv";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ autoconf automake libtool libxml2 curl cmake pam sblim-sfcc ];
buildInputs = [ curl libxml2 pam sblim-sfcc ];
cmakeFlags = [ cmakeFlags = [
"-DCMAKE_BUILD_RUBY_GEM=no" "-DCMAKE_BUILD_RUBY_GEM=no"
@ -22,18 +26,13 @@ stdenv.mkDerivation rec {
configureFlags = "--disable-more-warnings"; configureFlags = "--disable-more-warnings";
meta = { meta = with stdenv.lib; {
description = "Openwsman server implementation and client api with bindings"; description = "Openwsman server implementation and client API with bindings";
downloadPage = https://github.com/Openwsman/openwsman/releases;
homepage = https://github.com/Openwsman/openwsman; homepage = https://openwsman.github.io;
downloadPage = "https://github.com/Openwsman/openwsman/releases"; license = licenses.bsd3;
maintainers = with maintainers; [ deepfire ];
maintainers = [ stdenv.lib.maintainers.deepfire ]; platforms = platforms.unix;
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
inherit version; inherit version;
}; };
} }