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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
2017-12-24 01:46:53 +00:00
, curl, libxml2, pam, sblim-sfcc }:
2015-08-18 12:47:34 +00:00
stdenv.mkDerivation rec {
pname = "openwsman";
2023-01-06 17:00:56 +00:00
version = "2.7.2";
2015-08-18 12:47:34 +00:00
2017-12-24 01:46:53 +00:00
src = fetchFromGitHub {
owner = "Openwsman";
repo = "openwsman";
rev = "v${version}";
2023-01-06 17:00:56 +00:00
sha256 = "sha256-CH2pqWs64Dznim3IljmsthKEQfACVlaAKQ/07MgryHo=";
2015-08-18 12:47:34 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2017-12-24 01:46:53 +00:00
buildInputs = [ curl libxml2 pam sblim-sfcc ];
2015-08-18 12:47:34 +00:00
cmakeFlags = [
"-DCMAKE_BUILD_RUBY_GEM=no"
"-DBUILD_PYTHON=no"
"-DBUILD_PYTHON3=yes"
2015-08-18 12:47:34 +00:00
];
preConfigure = ''
cmakeFlags="$cmakeFlags -DPACKAGE_ARCHITECTURE=$(uname -m)";
'';
2018-07-25 21:44:21 +00:00
configureFlags = [ "--disable-more-warnings" ];
2015-08-18 12:47:34 +00:00
meta = with lib; {
2017-12-24 01:46:53 +00:00
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 12:47:34 +00:00
};
}