1{ lib, stdenv, fetchFromGitHub, autoreconfHook, curl }:
2
3stdenv.mkDerivation rec {
4 pname = "sblim-sfcc";
5 version = "2.2.9"; # this is technically 2.2.9-preview
6
7 src = fetchFromGitHub {
8 owner = "kkaempf";
9 repo = "sblim-sfcc";
10 rev = "514a76af2020fd6dc6fc380df76cbe27786a76a2";
11 sha256 = "06c1mskl9ixbf26v88w0lvn6v2xd6n5f0jd5mckqrn9j4vmh70hs";
12 };
13
14 buildInputs = [ curl ];
15
16 nativeBuildInputs = [ autoreconfHook ];
17
18 enableParallelBuilding = true;
19
20 meta = with lib; {
21 description = "Small Footprint CIM Client Library";
22 homepage = "https://sourceforge.net/projects/sblim/";
23 license = licenses.cpl10;
24 maintainers = with maintainers; [ deepfire ];
25 platforms = platforms.unix;
26 };
27}