nixpkgs/pkgs/development/libraries/openwsman/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2017-12-24 01:46:53 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig
, curl, libxml2, pam, sblim-sfcc }:
2015-08-18 13:47:34 +01:00
stdenv.mkDerivation rec {
pname = "openwsman";
2020-06-10 21:44:29 +01:00
version = "2.7.0";
2015-08-18 13:47:34 +01:00
2017-12-24 01:46:53 +00:00
src = fetchFromGitHub {
owner = "Openwsman";
repo = "openwsman";
rev = "v${version}";
2020-06-10 21:44:29 +01:00
sha256 = "19dj38jyzhhhvk863cikcwk5awzlq3337pxmsaqqm4wrcygrkfmx";
2015-08-18 13:47:34 +01:00
};
2017-12-24 01:46:53 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ curl libxml2 pam sblim-sfcc ];
2015-08-18 13:47:34 +01:00
cmakeFlags = [
"-DCMAKE_BUILD_RUBY_GEM=no"
"-DBUILD_PYTHON=no"
"-DBUILD_PYTHON3=yes"
2015-08-18 13:47:34 +01:00
];
preConfigure = ''
cmakeFlags="$cmakeFlags -DPACKAGE_ARCHITECTURE=$(uname -m)";
'';
2018-07-25 22:44:21 +01:00
configureFlags = [ "--disable-more-warnings" ];
2015-08-18 13:47:34 +01:00
2017-12-24 01:46:53 +00:00
meta = with stdenv.lib; {
description = "Openwsman server implementation and client API with bindings";
downloadPage = "https://github.com/Openwsman/openwsman/releases";
homepage = "https://openwsman.github.io";
2017-12-24 01:46:53 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ deepfire ];
2017-12-27 08:43:10 +00:00
platforms = platforms.linux; # PAM is not available on Darwin
2015-08-18 13:47:34 +01:00
inherit version;
};
}